p4raw-id: //depot/perl@12739
print "#@cmd\n";
print "not " if system(join(' ',@cmd));
print "ok 1\n";
-print "not " if system("embed_test");
+
+my $embed_test = File::Spec->catfile(File::Spec->curdir, "embed_test");
+
+print "not " if system($embed_test);
print "ok 9\n";
unlink($exe,"embed_test.c");