include ../Makefile.common ############################################################################ # Compare new and old test results ############################################################################ diff: for i in *.xmlv3 ; do\ diff $$i.$(PREVIOUS_RELEASE) $$i.$(CURRENT_RELEASE) > $$i.diff;\ done ############################################################################ # Build current test data ############################################################################ current: $(UT2) -i test_rate_monotonic.xmlv3 -s SCHEDULING_SET_PRIORITIES_ACCORDING_TO_RATE_MONOTONIC > test_rate_monotonic.xmlv3.$(CURRENT_RELEASE) $(UT2) -i test_deadline_monotonic.xmlv3 -s SCHEDULING_SET_PRIORITIES_ACCORDING_TO_DEADLINE_MONOTONIC > test_deadline_monotonic.xmlv3.$(CURRENT_RELEASE) $(UT2) -i test_OPA.xmlv3 -s SCHEDULING_SET_PRIORITIES_ACCORDING_TO_AUDSLEY_OPA > test_OPA.xmlv3.$(CURRENT_RELEASE) for i in test_ceiling_priority*.xmlv3 ; do\ echo $$i;\ $(UT2) -i $$i -s SCHEDULING_FEASIBILITY_COMPUTE_AND_SET_RESOURCE_CEILING_PRIORITY > $$i.$(CURRENT_RELEASE);\ done