Open garlick opened 4 months ago
I suggest this instead to avoid using pushd/popd.
modified tests/kern/t33
@@ -1,7 +1,8 @@
#!/bin/bash -e
PATH_POSTMARK=$(pwd)/postmark/postmark
-(pushd $PATH_MNTDIR >/dev/null
+(
+cd $PATH_MNTDIR >/dev/null
$PATH_POSTMARK <<EOT
set size 10 100000
set number 2000
@@ -10,5 +11,4 @@ show
run
quit
EOT
-popd $PATH_MNTDIR >/dev/null
) >t33.postmark
Problem: tests/kern/t33 fails due to a typo in the test script
This fixes it