diff options
author | Dániel Szoboszlay <[email protected]> | 2017-08-15 13:29:54 +0200 |
---|---|---|
committer | Dániel Szoboszlay <[email protected]> | 2017-08-15 13:29:54 +0200 |
commit | 9689ec29c328be096a33a4ac261f426c626425e0 (patch) | |
tree | e878510eeb227bd677b9dd691c98e1758b3b251f /erts/emulator/test | |
parent | 9e318b1b836f81d962341a5a78049ed9fb1a47c7 (diff) | |
download | otp-9689ec29c328be096a33a4ac261f426c626425e0.tar.gz otp-9689ec29c328be096a33a4ac261f426c626425e0.tar.bz2 otp-9689ec29c328be096a33a4ac261f426c626425e0.zip |
Execute the dropped_commands test case in port_SUITE
Also, fix cleaning up the OS environment setting modified by this test
case to prevent problems with later test cases using the echo_drv too.
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/port_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/emulator/test/port_SUITE.erl b/erts/emulator/test/port_SUITE.erl index ab0b1a82bd..c1e004c212 100644 --- a/erts/emulator/test/port_SUITE.erl +++ b/erts/emulator/test/port_SUITE.erl @@ -159,7 +159,7 @@ suite() -> all() -> [otp_6224, {group, stream}, basic_ping, slow_writes, bad_packet, bad_port_messages, {group, options}, - {group, multiple_packets}, parallell, dying_port, + {group, multiple_packets}, parallell, dying_port, dropped_commands, port_program_with_path, open_input_file_port, open_output_file_port, name1, env, huge_env, bad_env, cd, cd_relative, pipe_limit_env, bad_args, @@ -569,6 +569,7 @@ dropped_commands(Config, Outputv, Cmd) -> [dropped_commands_test(Cmd) || _ <- lists:seq(1, 100)], timer:sleep(100), erl_ddll:unload_driver("echo_drv"), + os:unsetenv("ECHO_DRV_USE_OUTPUTV"), ok. dropped_commands_test(Cmd) -> |