aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-12-12 16:24:49 +0100
committerBjörn Gustavsson <[email protected]>2016-12-12 16:33:28 +0100
commit2e1fb1a42098ac73cd44f60699a09c3c3e49f77f (patch)
tree1c041746e872fc7e14633374f10609e34eba7691
parentb47d104994c6f11301f23b0675ed5f06f3e25922 (diff)
downloadotp-2e1fb1a42098ac73cd44f60699a09c3c3e49f77f.tar.gz
otp-2e1fb1a42098ac73cd44f60699a09c3c3e49f77f.tar.bz2
otp-2e1fb1a42098ac73cd44f60699a09c3c3e49f77f.zip
Don't include problematic test cases in smoke test
In time_SUITE, the univ_to_local/1 and local_to_univ/1 test cases will fail if they are run outside the CET timezone. The consistency/1 test case uses is not reliable in March and October because it uses a simplified model for when the switch to/from DST is done.
-rw-r--r--erts/emulator/test/emulator_smoke.spec12
1 files changed, 9 insertions, 3 deletions
diff --git a/erts/emulator/test/emulator_smoke.spec b/erts/emulator/test/emulator_smoke.spec
index 3219aeb823..b2d0de8835 100644
--- a/erts/emulator/test/emulator_smoke.spec
+++ b/erts/emulator/test/emulator_smoke.spec
@@ -1,3 +1,9 @@
-{suites,"../emulator_test",[smoke_test_SUITE,time_SUITE]}.
-{cases,"../emulator_test",crypto_SUITE,[t_md5]}.
-{cases,"../emulator_test",float_SUITE,[fpe,cmp_integer]}. \ No newline at end of file
+{define,'Dir',"../emulator_test"}.
+{suites,'Dir',[smoke_test_SUITE]}.
+{suites,'Dir',[time_SUITE]}.
+{skip_cases,'Dir',time_SUITE,
+ [univ_to_local,local_to_univ],"Depends on CET timezone"}.
+{skip_cases,'Dir',time_SUITE,
+ [consistency],"Not reliable in October and March"}.
+{cases,'Dir',crypto_SUITE,[t_md5]}.
+{cases,'Dir',float_SUITE,[fpe,cmp_integer]}.