|
From: Nicholas N. <nj...@ca...> - 2004-10-20 13:02:29
|
CVS commit by nethercote:
whoops
M +1 -1 Makefile.am 1.3
--- valgrind/none/tests/x86/Makefile.am #1.2:1.3
@@ -15,5 +15,5 @@
$(addsuffix .stderr.exp,$(INSN_TESTS)) \
$(addsuffix .stdout.exp,$(INSN_TESTS)) \
- $(addsuffix .vgtest,$(INSN_TESTS))
+ $(addsuffix .vgtest,$(INSN_TESTS)) \
pushpopseg.stderr.exp pushpopseg.stdout.exp pushpopseg.vgtest \
rcl_assert.stderr.exp rcl_assert.vgtest \
|
|
From: Tom H. <th...@cy...> - 2004-11-02 09:49:21
|
CVS commit by thughes: Make sure we are using perl 5.6.0 as earlier versions won't work. M +1 -0 gen_insn_test.pl 1.2 --- valgrind/none/tests/x86/gen_insn_test.pl #1.1:1.2 @@ -1,4 +1,5 @@ #!/usr/bin/perl +use 5.006; use strict; use warnings; |
|
From: Nicholas N. <nj...@ca...> - 2004-11-02 10:02:41
|
On Tue, 2 Nov 2004, Tom Hughes wrote: > Make sure we are using perl 5.6.0 as earlier versions won't work. > > +use 5.006; Is that right? The numbers don't match... does Perl use a wacky numbering scheme? |
|
From: Tom H. <th...@cy...> - 2004-11-02 10:57:00
|
In message <Pin...@he...>
Nicholas Nethercote <nj...@ca...> wrote:
> On Tue, 2 Nov 2004, Tom Hughes wrote:
>
>> Make sure we are using perl 5.6.0 as earlier versions won't work.
>>
>> +use 5.006;
>
> Is that right? The numbers don't match... does Perl use a wacky
> numbering scheme?
Yes ;-)
Prior to version 5.6 the number were written as 5.005_03 which is
exactly equivalent to 5.00503 (the _ is syntactic sugar) which is
major version 5, minor version 5, patch level 3.
From 5.6 onward they started using 5.6.1 as the style for version
numbers add added a language construct that allowed v5.6.1 to be
written which is equivalent to 5.00601.
Of course if you want an old version to parse it right then using the
original form is best.
Tom
--
Tom Hughes (th...@cy...)
Software Engineer, Cyberscience Corporation
http://www.cyberscience.com/
|
|
From: Tom H. <th...@cy...> - 2005-01-16 11:15:51
|
CVS commit by thughes: Removed filter_int reference from makefile. M +1 -1 Makefile.am 1.4 --- valgrind/none/tests/x86/Makefile.am #1.3:1.4 @@ -1,3 +1,3 @@ -noinst_SCRIPTS = filter_cpuid filter_int filter_stderr gen_insn_test.pl +noinst_SCRIPTS = filter_cpuid filter_stderr gen_insn_test.pl CLEANFILES = $(addsuffix .c,$(INSN_TESTS)) |