DESC="Custom Configuration Command"
main(){
	CONFIG_COMMAND="echo '#define test10'"
	if [ ${_TARGET} == "win32" ]; then
		CONFIG_COMMAND="echo #define test10"
	fi;
	
	if  ( ${AGCC} --gen_config  -o test_10.config --config_command "${CONFIG_COMMAND}" );then true;else
		ERR_MSG="Failed executing '${AGCC} --gen_config  -o test_10.config --config_command ${CONFIG_COMMAND}";
		return 0;
	fi;
	
	
	if [ ! -f test_10.config ];then
		ERR_MSG="Puma Configuration File 'test10.config' was not generated";
		return 0;
	fi;
	
	if (  diff -w test_10.config test_10.ref );then true;else
		ERR_MSG="Outputs differ: Configuration file not correctly generated";
		return 0;
	fi;
	
	

	rm -f test_10.config
	return 1;
}
