include Makefile.common ############################################################################ # Compare $(CURRENT_RELEASE) and $(PREVIOUS_RELEASE) test results ############################################################################ diff: ./findDiff.sh $(CURRENT_RELEASE) $(PREVIOUS_RELEASE) ############################################################################ # Build test data for a given release # Set $(CURRENT_RELEASE) before building test data ############################################################################ current: (cd basic_feasibility_tests; make current) (cd basic_scheduling_simulation; make current) (cd cache; make current) (cd dbf; make current) (cd dependencies; make current) (cd feasibility_interval; make current) (cd network; make current) (cd partitionning_algorithms; make current) (cd priority_assignments; make current) (cd resource; make current) (cd scheduling_anomalies; make current) (cd security; make current) (cd worst_case_response_time; make current) $(UT1) -i test_memory_footprint1.xmlv3 -s MEMORY_COMPUTE_FOOTPRINT_ANALYSIS > test_memory_footprint1.xmlv3.$(CURRENT_RELEASE) $(UT1) -i test_memory_footprint2.xmlv3 -s MEMORY_COMPUTE_FOOTPRINT_ANALYSIS > test_memory_footprint2.xmlv3.$(CURRENT_RELEASE) $(UT1) -i test_random.xmlv3 -s RANDOM_RESPONSE_TIME_DENSITY 1000 > test_random.xmlv3.$(CURRENT_RELEASE)