aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/test/hipe_testsuite_driver.erl
diff options
context:
space:
mode:
authorZandra <[email protected]>2016-01-27 11:44:59 +0100
committerZandra <[email protected]>2016-01-27 11:44:59 +0100
commitf0b7d4797b13a90b4dcee40468a5675a73feb1d4 (patch)
tree44e2832bbe7e7a0c1deaa6bd8685d3d03713a2b2 /lib/hipe/test/hipe_testsuite_driver.erl
parent6b6828e51300e318b8a3a572b6a5d78ca3756d79 (diff)
parent9722388b2fcec9b7f7e5680335e1bd6392ef11fc (diff)
downloadotp-f0b7d4797b13a90b4dcee40468a5675a73feb1d4.tar.gz
otp-f0b7d4797b13a90b4dcee40468a5675a73feb1d4.tar.bz2
otp-f0b7d4797b13a90b4dcee40468a5675a73feb1d4.zip
Merge branch 'maint'
Diffstat (limited to 'lib/hipe/test/hipe_testsuite_driver.erl')
-rw-r--r--lib/hipe/test/hipe_testsuite_driver.erl16
1 files changed, 2 insertions, 14 deletions
diff --git a/lib/hipe/test/hipe_testsuite_driver.erl b/lib/hipe/test/hipe_testsuite_driver.erl
index 5f05a716bc..9f5d7421b4 100644
--- a/lib/hipe/test/hipe_testsuite_driver.erl
+++ b/lib/hipe/test/hipe_testsuite_driver.erl
@@ -176,7 +176,8 @@ run(TestCase, Dir, _OutDir) ->
HiPEOpts = try TestCase:hipe_options() catch error:undef -> [] end,
{ok, TestCase} = hipe:c(TestCase, HiPEOpts),
ok = TestCase:test(),
- case is_llvm_opt_available() of
+ ToLLVM = try TestCase:to_llvm() catch error:undef -> true end,
+ case ToLLVM andalso hipe:llvm_support_available() of
true ->
{ok, TestCase} = hipe:c(TestCase, [to_llvm|HiPEOpts]),
ok = TestCase:test();
@@ -186,16 +187,3 @@ run(TestCase, Dir, _OutDir) ->
%% lists:foreach(fun (DF) -> ok end, % = file:delete(DF) end,
%% [filename:join(OutDir, D) || D <- DataFiles])
%% end.
-
-
-%% This function, which is supposed to check whether the right LLVM
-%% infrastructure is available, should be probably written in a better
-%% and more portable way and moved to the hipe application.
-
-is_llvm_opt_available() ->
- OptStr = os:cmd("opt -version"),
- SubStr = "LLVM version ", N = length(SubStr),
- case string:str(OptStr, SubStr) of
- 0 -> false;
- S -> P = S + N, string:sub_string(OptStr, P, P + 2) >= "3.4"
- end.