@@ -486,15 +486,15 @@ public static void main(String args[]) throws Throwable {
486
486
equal (run (pb ).exitValue (),
487
487
False .exitValue ());
488
488
// Traditional shell scripts without #!
489
- setFileContents ( prog , "exec /bin/true \n " );
490
- prog . setExecutable ( true );
491
- equal ( run ( pb ). exitValue (),
492
- True .exitValue ());
493
- prog .delete ();
494
- setFileContents (prog , "exec /bin/false\n " );
495
- prog .setExecutable (true );
496
- equal (run (pb ).exitValue (),
497
- False . exitValue ());
489
+ if (!( Platform . isLinux () && Platform . isMusl ())) {
490
+ setFileContents ( prog , "exec /bin/ true\n " );
491
+ prog . setExecutable ( true );
492
+ equal ( run ( pb ). exitValue (), True .exitValue ());
493
+ prog .delete ();
494
+ setFileContents (prog , "exec /bin/false\n " );
495
+ prog .setExecutable (true );
496
+ equal (run (pb ).exitValue (), False . exitValue ());
497
+ }
498
498
prog .delete ();
499
499
}
500
500
@@ -511,14 +511,16 @@ public static void main(String args[]) throws Throwable {
511
511
pb .command (cmd );
512
512
513
513
// Test traditional shell scripts without #!
514
- setFileContents (dir1Prog , "/bin/echo \" $@\" \n " );
515
- pb .command (new String [] {"prog" , "hello" , "world" });
516
- checkPermissionDenied (pb );
517
- dir1Prog .setExecutable (true );
518
- equal (run (pb ).out (), "hello world\n " );
519
- equal (run (pb ).exitValue (), True .exitValue ());
520
- dir1Prog .delete ();
521
- pb .command (cmd );
514
+ if (!(Platform .isLinux () && Platform .isMusl ())) {
515
+ setFileContents (dir1Prog , "/bin/echo \" $@\" \n " );
516
+ pb .command (new String [] {"prog" , "hello" , "world" });
517
+ checkPermissionDenied (pb );
518
+ dir1Prog .setExecutable (true );
519
+ equal (run (pb ).out (), "hello world\n " );
520
+ equal (run (pb ).exitValue (), True .exitValue ());
521
+ dir1Prog .delete ();
522
+ pb .command (cmd );
523
+ }
522
524
523
525
// If prog found on both parent and child's PATH,
524
526
// parent's is used.
0 commit comments