[compiler-rt] r343095 - Disable tests from r342917 on Windows; -lm won't work there
Hans Wennborg via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 26 04:23:00 PDT 2018
Author: hans
Date: Wed Sep 26 04:23:00 2018
New Revision: 343095
URL: http://llvm.org/viewvc/llvm-project?rev=343095&view=rev
Log:
Disable tests from r342917 on Windows; -lm won't work there
Modified:
compiler-rt/trunk/test/builtins/Unit/compiler_rt_logb_test.c
compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbf_test.c
compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbl_test.c
Modified: compiler-rt/trunk/test/builtins/Unit/compiler_rt_logb_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/builtins/Unit/compiler_rt_logb_test.c?rev=343095&r1=343094&r2=343095&view=diff
==============================================================================
--- compiler-rt/trunk/test/builtins/Unit/compiler_rt_logb_test.c (original)
+++ compiler-rt/trunk/test/builtins/Unit/compiler_rt_logb_test.c Wed Sep 26 04:23:00 2018
@@ -1,3 +1,5 @@
+// Linking with -lm won't work on Windows.
+// UNSUPPORTED: windows
// RUN: %clang_builtins %s %librt -lm -o %t && %run %t
//===-- compiler_rt_logb_test.c - Test __compiler_rt_logb -----------------===//
//
Modified: compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbf_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbf_test.c?rev=343095&r1=343094&r2=343095&view=diff
==============================================================================
--- compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbf_test.c (original)
+++ compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbf_test.c Wed Sep 26 04:23:00 2018
@@ -1,3 +1,5 @@
+// Linking with -lm won't work on Windows.
+// UNSUPPORTED: windows
// RUN: %clang_builtins %s %librt -lm -o %t && %run %t
//===-- compiler_rt_logbf_test.c - Test __compiler_rt_logbf ---------------===//
//
Modified: compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbl_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbl_test.c?rev=343095&r1=343094&r2=343095&view=diff
==============================================================================
--- compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbl_test.c (original)
+++ compiler-rt/trunk/test/builtins/Unit/compiler_rt_logbl_test.c Wed Sep 26 04:23:00 2018
@@ -1,3 +1,5 @@
+// Linking with -lm won't work on Windows.
+// UNSUPPORTED: windows
// RUN: %clang_builtins %s %librt -lm -o %t && %run %t
//===-- compiler_rt_logbl_test.c - Test __compiler_rt_logbl ---------------===//
//
More information about the llvm-commits
mailing list