2005-07-14 13:06:38 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
. ${srcdir}/common
|
|
|
|
|
|
|
|
|
|
RESULT=""
|
2012-09-29 08:50:57 -07:00
|
|
|
run_test --cflags simple
|
2005-07-14 13:06:38 +00:00
|
|
|
|
2010-05-27 22:23:40 +02:00
|
|
|
RESULT=""
|
2012-09-29 08:50:57 -07:00
|
|
|
run_test --cflags fields-blank
|
2012-10-01 22:33:38 -07:00
|
|
|
|
|
|
|
|
RESULT="-DOTHER -I/other/include"
|
|
|
|
|
run_test --cflags other
|
|
|
|
|
|
|
|
|
|
RESULT="-I/other/include"
|
|
|
|
|
run_test --cflags-only-I other
|
|
|
|
|
|
|
|
|
|
RESULT="-DOTHER"
|
|
|
|
|
run_test --cflags-only-other other
|
2012-10-16 20:44:16 -07:00
|
|
|
|
|
|
|
|
# Try various mixed combinations
|
|
|
|
|
RESULT="-DOTHER -I/other/include"
|
|
|
|
|
run_test --cflags-only-I --cflags-only-other other
|
|
|
|
|
run_test --cflags-only-other --cflags-only-I other
|
|
|
|
|
run_test --cflags --cflags-only-I --cflags-only-other other
|
|
|
|
|
run_test --cflags --cflags-only-I other
|
|
|
|
|
run_test --cflags --cflags-only-other other
|