3 # quickie tests to see if h2ph actually runs and does more or less what is
11 my $extracted_program = '../utils/h2ph'; # unix, nt, ...
12 if ($^O eq 'VMS') { $extracted_program = '[-.utils]h2ph.com'; }
13 if (!(-e $extracted_program)) {
14 print "1..0 # Skip: $extracted_program was not built\n";
20 # quickly compare two text files
23 for (($A,$B) = @_) { open(_,"<$_") ? $_ = <_> : die "$_ : $!"; close _ }
28 $ok = system("$^X \"-I../lib\" $extracted_program -d. \"-Q\" lib/h2ph.h");
29 print(($ok == 0 ? "" : "not "), "ok 1\n");
31 # does it work? well, does it do what we expect? :-)
32 $ok = txt_compare("lib/h2ph.ph", "lib/h2ph.pht");
33 print(($ok == 0 ? "" : "not "), "ok 2\n");
35 # cleanup - should this be in an END block?
36 unlink("lib/h2ph.ph");
37 unlink("_h2ph_pre.ph");