Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
311 B

  1. @foo = `inftest obj\\ia64\\layout.inf /B /m`;
  2. @tests = ("dic", "grm");
  3. print @tests;
  4. foreach $line ( @foo ) {
  5. foreach $test ( @tests ) {
  6. print "Testing: $test on $line\n";
  7. if ($line =~ eval ("/\$test/ig") ) {
  8. } else {
  9. print eval ("/\$test/ig");
  10. print $line;
  11. }
  12. }
  13. }