- or download this
# gen-long-llil.pl
# Crude program to generate a LLiL test file with long names and count
+s
...
print "generating short long test file '$outfile' with count '$count'\
+n";
create_long_test_file( $outfile, $count );
print "file size=", -s $outfile, "\n";
- or download this
> perl gen-long-llil.pl long1.txt 600
generating short long test file 'long1.txt' with count '600'
...
> perl gen-long-llil.pl long3.txt 600
generating short long test file 'long3.txt' with count '600'
file size=65616000
- or download this
> perl llil2d.pl big1.txt big2.txt big3.txt long1.txt long2.txt long3.
+txt >perl2.tmp
llil2d start
...
total : 11 secs
> diff cpp2.tmp perl2.tmp
- or download this
# gen-llil.pl
# Crude program to generate a big LLiL test file to use in benchmarks
...
print "generating test file '$outfile' with count '$count' (binmode=$f
+bin)\n";
create_test_file($outfile, $count, $wordlen, $fbin);
print "file size=", -s $outfile, "\n";
- or download this
# gen-long-llil.pl
# Crude program to generate a LLiL test file with long names and count
+s
...
print "generating short long test file '$outfile' with count '$count'
+(binmode=$fbin)\n";
create_long_test_file( $outfile, $count, $fbin );
print "file size=", -s $outfile, "\n";