DESC="More than one project path"
main(){
	if  ( ${AGCC} -Isrc  -I additional_aspects --real-instances --path src --path additional_aspects -o test -v2 src/*.cc );then true;else
		ERR_MSG="Failed executing '${AGCC} --real-instances --path src --path additional_aspects -v2 src/*.cc'";
		return 0;
	fi;
	
	if [ ! -e test ];then
		ERR_MSG="Executable 'test' was not generated";
		return 0;
	else
		./test > test_09.out;
	fi;

	echo -n "\n\nDIFF:\n"
	if (  diff -w  test_09.out test_09.ref );then true;else
		ERR_MSG="Outputs differ: Probably the programm was not weaved correctly";
		return 0;
	fi;
	

	rm -f test test_09.out;
	return 1;
}
