1 --- serf-1.3.10/build/check.py.orig 2020-03-31 15:30:18.000000000 +0200
2 +++ serf-1.3.10/build/check.py 2023-08-20 15:37:29.181105481 +0200
7 # check.py : Run all the test cases.
10 TEST_ALL_EXE = os.path.join(test_builddir, TEST_ALL_EXE)
12 # Find test responses and run them one by one
13 - for case in glob.glob(testdir + "/testcases/*.response"):
14 + for case in sorted(glob.glob(testdir + "/testcases/*.response")):
15 print("== Testing %s ==" % (case))
17 subprocess.check_call([SERF_RESPONSE_EXE, case])