DESC="String including whitespace used with -D option"
main(){
	mkdir src/bin
	if  ( ${AGCC} -p src -v1 -o src/bin/test -DFOO="foo bar" src/*.cc );then true;
	else
		ERR_MSG="Execution failed '${AGCC} -p src -v1 -o src/bin/test src/*.cc'";
		return 0;
	fi;
	
	rm -rf puma.config src/bin
	return 1;
}
