diff options
author | Hans Bolinder <[email protected]> | 2015-09-29 09:41:31 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-10-09 11:37:55 +0200 |
commit | 358d162cef263cc7e9d4d072aef259a41835e9d8 (patch) | |
tree | 902aaff4d4f7a52750b3a7f5b69133d7a22f7a25 /lib | |
parent | 99dd169e4c499c78dd85c6e34296fdc150e47d24 (diff) | |
download | otp-358d162cef263cc7e9d4d072aef259a41835e9d8.tar.gz otp-358d162cef263cc7e9d4d072aef259a41835e9d8.tar.bz2 otp-358d162cef263cc7e9d4d072aef259a41835e9d8.zip |
Update Test Server
A record field type has been modified due to commit 8ce35b2:
"Take out automatic insertion of 'undefined' from typed record fields".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/test_server/src/test_server_gl.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/test_server/src/test_server_gl.erl b/lib/test_server/src/test_server_gl.erl index c5ec3ccbe6..31098d9726 100644 --- a/lib/test_server/src/test_server_gl.erl +++ b/lib/test_server/src/test_server_gl.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2012-2013. All Rights Reserved. +%% Copyright Ericsson AB 2012-2015. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ -export([init/1,handle_call/3,handle_cast/2,handle_info/2,terminate/2]). -record(st, {tc_supervisor :: 'none'|pid(), %Test case supervisor - tc :: mfa(), %Current test case MFA + tc :: mfa() | 'undefined', %Current test case MFA minor :: 'none'|pid(), %Minor fd minor_monitor, %Monitor ref for minor fd capture :: 'none'|pid(), %Capture output |