aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKostis Sagonas <[email protected]>2014-02-03 01:28:01 +0100
committerLukas Larsson <[email protected]>2014-02-24 17:23:12 +0100
commit54cfcfd2c100525dbc7f856c459be87e56354066 (patch)
tree8895d2f1af79744724d884d7fa9db7179ddb0f7c
parenta4a535e84b1637c21827783fa52831334303a427 (diff)
downloadotp-54cfcfd2c100525dbc7f856c459be87e56354066.tar.gz
otp-54cfcfd2c100525dbc7f856c459be87e56354066.tar.bz2
otp-54cfcfd2c100525dbc7f856c459be87e56354066.zip
Add check so that tests are skipped if HiPE is not available
-rw-r--r--lib/hipe/test/hipe_testsuite_driver.erl5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/hipe/test/hipe_testsuite_driver.erl b/lib/hipe/test/hipe_testsuite_driver.erl
index 72605f9c2f..7e904fcb88 100644
--- a/lib/hipe/test/hipe_testsuite_driver.erl
+++ b/lib/hipe/test/hipe_testsuite_driver.erl
@@ -121,7 +121,10 @@ write_header(#suite{suitename = SuiteName, outputfile = OutputFile,
"init_per_suite() ->\n"
" [].\n\n"
"init_per_suite(Config) ->\n"
- " Config.\n\n"
+ " case erlang:system_info(hipe_architecture) of\n"
+ " undefined -> {skip, \"HiPE not available or enabled\"};\n"
+ " _ -> Config\n"
+ " end.\n\n"
"end_per_suite(_Config) ->\n"
" ok.\n\n"
"all() ->\n"