tests: pass "cp" as argv[0] in test 162

otherwise illumos gets grumpy. I'm assuming based on the error message
that cp, mv, and ln are all the same program hardlinked to different
names.
pull/5911/head
Dylan Baker 6 years ago
parent 4030ee4b6f
commit 4ce43a450b
  1. 2
      test cases/common/162 external program shebang parsing/main.c

@ -23,7 +23,7 @@ intrp_copyfile (char * src, char * dest)
return 1;
return 0;
#else
return execlp ("cp", "copyfile", src, dest, NULL);
return execlp ("cp", "cp", src, dest, NULL);
#endif
}

Loading…
Cancel
Save