[llvm-branch-commits] [llvm-branch] r221390 - Merging r220401:

Tom Stellard thomas.stellard at amd.com
Wed Nov 5 12:14:57 PST 2014


Author: tstellar
Date: Wed Nov  5 14:14:56 2014
New Revision: 221390

URL: http://llvm.org/viewvc/llvm-project?rev=221390&view=rev
Log:
Merging r220401:

------------------------------------------------------------------------
r220401 | mail | 2014-10-22 14:18:54 -0400 (Wed, 22 Oct 2014) | 6 lines

test: Make this test runnable in directories with @ in their names

Jenkins likes to use directories with names involving the '@'
character, which breaks the sed expression in this test. Switch to use
'|' on the assumption that it's less likely to show up in a path.

------------------------------------------------------------------------

Modified:
    llvm/branches/release_35/test/Transforms/GCOVProfiling/linezero.ll

Modified: llvm/branches/release_35/test/Transforms/GCOVProfiling/linezero.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_35/test/Transforms/GCOVProfiling/linezero.ll?rev=221390&r1=221389&r2=221390&view=diff
==============================================================================
--- llvm/branches/release_35/test/Transforms/GCOVProfiling/linezero.ll (original)
+++ llvm/branches/release_35/test/Transforms/GCOVProfiling/linezero.ll Wed Nov  5 14:14:56 2014
@@ -1,4 +1,4 @@
-; RUN: sed -e 's at PATTERN@\%T at g' < %s > %t1
+; RUN: sed -e 's|PATTERN|%T|g' < %s > %t1
 ; RUN: opt -insert-gcov-profiling -disable-output < %t1
 ; RUN: rm %T/linezero.gcno %t1
 ; REQUIRES: shell





More information about the llvm-branch-commits mailing list