aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-07-15 15:38:55 +0200
committerBruce Yinhe <[email protected]>2014-07-15 15:38:55 +0200
commit0253464202a819b693f7566ac359a60b105dd8b0 (patch)
tree908e9a7a1dc2a915c51306520c76c8ab35d3eb12 /lib/stdlib/test
parent25174d6c266198ae22bf5a830e7dd82e150d4237 (diff)
parent172e812c491680fbb175f56f7604d4098cdc9de4 (diff)
downloadotp-0253464202a819b693f7566ac359a60b105dd8b0.tar.gz
otp-0253464202a819b693f7566ac359a60b105dd8b0.tar.bz2
otp-0253464202a819b693f7566ac359a60b105dd8b0.zip
Merge branch 'maint'
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r--lib/stdlib/test/shell_SUITE.erl5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/stdlib/test/shell_SUITE.erl b/lib/stdlib/test/shell_SUITE.erl
index e016432f4d..f841e2c4a6 100644
--- a/lib/stdlib/test/shell_SUITE.erl
+++ b/lib/stdlib/test/shell_SUITE.erl
@@ -2532,6 +2532,11 @@ otp_6554(Config) when is_list(Config) ->
"\n end.\nok.\n" =
t(<<"begin F = fun() -> foo end, 1 end. B = F(). C = 17. b().">>),
+ ?line "3: command not found" = comm_err(<<"#{v(3) => v}.">>),
+ ?line "3: command not found" = comm_err(<<"#{k => v(3)}.">>),
+ ?line "3: command not found" = comm_err(<<"#{v(3) := v}.">>),
+ ?line "3: command not found" = comm_err(<<"#{k := v(3)}.">>),
+ ?line "3: command not found" = comm_err(<<"(v(3))#{}.">>),
%% Tests I'd like to do: (you should try them manually)
%% "catch spawn_link(fun() -> timer:sleep(1000), exit(foo) end)."
%% "** exception error: foo" should be output after 1 second