diff options
author | Matt Beaumont-Gay <matthewbg@google.com> | 2012-12-21 22:43:20 +0000 |
---|---|---|
committer | Matt Beaumont-Gay <matthewbg@google.com> | 2012-12-21 22:43:20 +0000 |
commit | 0a19ee8334aebdf73383f165e26477cd146e1178 (patch) | |
tree | cf233f3c925aea8f6d3f604e4797e12520efee71 | |
parent | 67a0f6ef5ae38e1abddb278544e18aede6ea7833 (diff) |
Insulate this test from the whims of the random number generator.
Our internal buildbot just failed because the tempfile happened to be named
'nodefaultlib-lcGA7k.o', which contains the substring '-lc'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170941 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Driver/nodefaultlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Driver/nodefaultlib.c b/test/Driver/nodefaultlib.c index 518928a885..f9462fd27a 100644 --- a/test/Driver/nodefaultlib.c +++ b/test/Driver/nodefaultlib.c @@ -2,7 +2,7 @@ // RUN: FileCheck < %t %s // // CHECK-NOT: start-group -// CHECK-NOT: -lgcc -// CHECK-NOT: -lc +// CHECK-NOT: "-lgcc" +// CHECK-NOT: "-lc" // CHECK: crtbegin // CHECK: crtend |