remove the conf.h listing when building, and add another test for

get_number
This commit is contained in:
welcor 2024-06-21 14:45:07 +02:00
parent 594cedbff6
commit 9399b68f26
2 changed files with 1 additions and 2 deletions

View file

@ -19,8 +19,6 @@ jobs:
run: sudo apt install -y libcmocka-dev run: sudo apt install -y libcmocka-dev
- name: configure - name: configure
run: ./configure run: ./configure
- name: list conf.h for testing
run: cat src/conf.h
- name: build tests - name: build tests
run: cd src && touch .accepted && make test run: cd src && touch .accepted && make test
- name: build - name: build

View file

@ -7,6 +7,7 @@ UNIT_TEST(test_get_number)
run_single_get_number_test("1.feather", "feather", 1); run_single_get_number_test("1.feather", "feather", 1);
run_single_get_number_test("2.feather", "feather", 2); run_single_get_number_test("2.feather", "feather", 2);
run_single_get_number_test("1.feat", "feat", 1); run_single_get_number_test("1.feat", "feat", 1);
run_single_get_number_test("2.feat", "feat", 2);
run_single_get_number_test("feather", "feather", 1); run_single_get_number_test("feather", "feather", 1);
run_single_get_number_test("10.feather", "feather", 10); run_single_get_number_test("10.feather", "feather", 10);