blob: d15474c1c8fed92079ede31c51613ff5feb7e3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!./perl -w
# run Porting/bench.pl's selftest
use strict;
chdir '..' if -f 'test.pl' && -f 'thread_it.pl';
require './t/test.pl';
system "$^X -I. -MTestInit Porting/bench.pl --action=selftest";
|