|
From: <sv...@va...> - 2009-04-17 06:52:14
|
Author: njn Date: 2009-04-17 07:52:10 +0100 (Fri, 17 Apr 2009) New Revision: 9569 Log: Move with-space to linux/, because it's hard to replicate on Darwin. Added: trunk/memcheck/tests/linux/with-space.stderr.exp trunk/memcheck/tests/linux/with-space.stdout.exp trunk/memcheck/tests/linux/with-space.vgtest Removed: trunk/memcheck/tests/with-space.stderr.exp trunk/memcheck/tests/with-space.stdout.exp trunk/memcheck/tests/with-space.vgtest Modified: trunk/memcheck/tests/Makefile.am trunk/memcheck/tests/linux/Makefile.am Modified: trunk/memcheck/tests/Makefile.am =================================================================== --- trunk/memcheck/tests/Makefile.am 2009-04-17 06:51:43 UTC (rev 9568) +++ trunk/memcheck/tests/Makefile.am 2009-04-17 06:52:10 UTC (rev 9569) @@ -160,7 +160,6 @@ vcpu_fbench.stdout.exp vcpu_fbench.stderr.exp vcpu_fbench.vgtest \ vcpu_fnfns.stdout.exp vcpu_fnfns.stdout.exp-glibc28-amd64 \ vcpu_fnfns.stderr.exp vcpu_fnfns.vgtest \ - with-space.stderr.exp with-space.stdout.exp with-space.vgtest \ wrap1.vgtest wrap1.stdout.exp wrap1.stderr.exp \ wrap2.vgtest wrap2.stdout.exp wrap2.stderr.exp \ wrap3.vgtest wrap3.stdout.exp wrap3.stderr.exp \ Modified: trunk/memcheck/tests/linux/Makefile.am =================================================================== --- trunk/memcheck/tests/linux/Makefile.am 2009-04-17 06:51:43 UTC (rev 9568) +++ trunk/memcheck/tests/linux/Makefile.am 2009-04-17 06:52:10 UTC (rev 9569) @@ -7,7 +7,8 @@ brk.stderr.exp brk.vgtest \ capget capget.stderr.exp \ stack_switch.stderr.exp stack_switch.vgtest \ - timerfd-syscall timerfd-syscall.stderr.exp + timerfd-syscall timerfd-syscall.stderr.exp \ + with-space.stderr.exp with-space.stdout.exp with-space.vgtest check_PROGRAMS = \ brk \ Copied: trunk/memcheck/tests/linux/with-space.stderr.exp (from rev 9566, trunk/memcheck/tests/with-space.stderr.exp) =================================================================== --- trunk/memcheck/tests/linux/with-space.stderr.exp (rev 0) +++ trunk/memcheck/tests/linux/with-space.stderr.exp 2009-04-17 06:52:10 UTC (rev 9569) @@ -0,0 +1,2 @@ +Conditional jump or move depends on uninitialised value(s) + at 0x........: main (manuel1.c:7) Property changes on: trunk/memcheck/tests/linux/with-space.stderr.exp ___________________________________________________________________ Name: svn:mergeinfo + Copied: trunk/memcheck/tests/linux/with-space.stdout.exp (from rev 9566, trunk/memcheck/tests/with-space.stdout.exp) =================================================================== --- trunk/memcheck/tests/linux/with-space.stdout.exp (rev 0) +++ trunk/memcheck/tests/linux/with-space.stdout.exp 2009-04-17 06:52:10 UTC (rev 9569) @@ -0,0 +1 @@ +x = 88 Property changes on: trunk/memcheck/tests/linux/with-space.stdout.exp ___________________________________________________________________ Name: svn:mergeinfo + Copied: trunk/memcheck/tests/linux/with-space.vgtest (from rev 9566, trunk/memcheck/tests/with-space.vgtest) =================================================================== --- trunk/memcheck/tests/linux/with-space.vgtest (rev 0) +++ trunk/memcheck/tests/linux/with-space.vgtest 2009-04-17 06:52:10 UTC (rev 9569) @@ -0,0 +1,14 @@ +# Use the "prereq" command to copy manuel1 to a filename containing a space. +# This used to not work properly, because the debug info would not be read +# correctly for filenames containing spaces (bug #88678). +# +# Nb: we only run this test on Linux. This is because on Darwin you can't +# easily rename an executable with a .dSYM -- the original executable name +# gets baked into the .dSYM, so renaming the .dSYM as well isn't enough, you +# have to modify the contents of the .dSYM. Another idea would be to avoid +# the renaming in the first place by just using 'with space' as the +# filename, but automake doesn't seem to like files containing spaces. +prereq: cp ../manuel1 'with space' +prog: 'with space' +vgopts: -q +cleanup: rm 'with space' Property changes on: trunk/memcheck/tests/linux/with-space.vgtest ___________________________________________________________________ Name: svn:mergeinfo + Deleted: trunk/memcheck/tests/with-space.stderr.exp =================================================================== --- trunk/memcheck/tests/with-space.stderr.exp 2009-04-17 06:51:43 UTC (rev 9568) +++ trunk/memcheck/tests/with-space.stderr.exp 2009-04-17 06:52:10 UTC (rev 9569) @@ -1,2 +0,0 @@ -Conditional jump or move depends on uninitialised value(s) - at 0x........: main (manuel1.c:7) Deleted: trunk/memcheck/tests/with-space.stdout.exp =================================================================== --- trunk/memcheck/tests/with-space.stdout.exp 2009-04-17 06:51:43 UTC (rev 9568) +++ trunk/memcheck/tests/with-space.stdout.exp 2009-04-17 06:52:10 UTC (rev 9569) @@ -1 +0,0 @@ -x = 88 Deleted: trunk/memcheck/tests/with-space.vgtest =================================================================== --- trunk/memcheck/tests/with-space.vgtest 2009-04-17 06:51:43 UTC (rev 9568) +++ trunk/memcheck/tests/with-space.vgtest 2009-04-17 06:52:10 UTC (rev 9569) @@ -1,7 +0,0 @@ -# Use the "prereq" command to copy manuel1 to a filename containing a space. -# This used to not work properly, because the debug info would not be read -# correctly for filenames containing spaces (bug #88678). -prereq: cp manuel1 'with space' -prog: 'with space' -vgopts: -q -cleanup: rm 'with space' |