aboutsummaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2022-11-01 11:36:33 +0000
committerRon Yorston <rmy@pobox.com>2022-11-01 11:46:13 +0000
commit93cb545c1a380724b7cf4528eabe6da3ea8ba964 (patch)
tree4d1b89dcf6fb12b1852d0926a1ce3b55ce766c2c /testsuite
parent721a17bc3fc9938a82a7b89e1cc21bc5e756a35c (diff)
downloadbusybox-w32-93cb545c1a380724b7cf4528eabe6da3ea8ba964.tar.gz
busybox-w32-93cb545c1a380724b7cf4528eabe6da3ea8ba964.tar.bz2
busybox-w32-93cb545c1a380724b7cf4528eabe6da3ea8ba964.zip
make: fix test for .WAIT so bmake passes
Use $? instead of $^ in the test for .WAIT. bmake supports .WAIT but not $^.
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/make.tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/make.tests b/testsuite/make.tests
index 8b46faf3c..a0ca9778b 100755
--- a/testsuite/make.tests
+++ b/testsuite/make.tests
@@ -303,7 +303,7 @@ testing "make .WAIT is allowed as a prerequisite" \
303 "make -f -" \ 303 "make -f -" \
304 "file1 file2\n" "" ' 304 "file1 file2\n" "" '
305target: file1 .WAIT file2 305target: file1 .WAIT file2
306 @echo $^ 306 @echo $?
307' 307'
308cd .. || exit 1; rm -rf make.tempdir 2>/dev/null 308cd .. || exit 1; rm -rf make.tempdir 2>/dev/null
309 309