mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
- plus: execute "+command" when run with -jX -n
- ellipsis: ellipsis ("...") from variable
- empty: empty command (from variable)
Currently make(1) fails all three tests:
- plus: segmentation fault due to incorrect command list handling
- ellipsis: works in compat mode but fails in job (-jX) mode
- empty:
- compat mode: prints error message
- job mode: works but prints empty string
15 lines
155 B
Bash
15 lines
155 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
cd `dirname $0`
|
|
. ../../common.sh
|
|
|
|
# Description
|
|
DESC="Test '+command' execution with -n -jX"
|
|
|
|
# Run
|
|
TEST_N=1
|
|
TEST_1=
|
|
|
|
eval_cmd $*
|