
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
24 lines
617 B
Plaintext
24 lines
617 B
Plaintext
Posix says we should execute the command as if run by system(3)
|
|
Expect 'Hello,' and 'World!'
|
|
Hello,
|
|
World!
|
|
a command
|
|
a command prefixed by '+' executes even with -n
|
|
another command
|
|
make -n
|
|
echo a command
|
|
echo "a command prefixed by '+' executes even with -n"
|
|
a command prefixed by '+' executes even with -n
|
|
echo another command
|
|
make -n -j1
|
|
{ echo a command
|
|
} || exit $?
|
|
echo "a command prefixed by '+' executes even with -n"
|
|
a command prefixed by '+' executes even with -n
|
|
{ echo another command
|
|
} || exit $?
|
|
Now we expect an error...
|
|
*** Error code 1 (continuing)
|
|
`all' not remade because of errors.
|
|
exit status 0
|