-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix auto_tests Makefile #1112
Fix auto_tests Makefile #1112
Conversation
I'm only semi happy with the desire to keep the test lists in sync. Sometimes tests take a lot of time and autotools doesn't have a timeout. I guess we should look into the root cause and fix it. Other than that no particular concerns. |
I'm only semi happy with the desire to keep the test lists in sync.
I take it you're referring to setting check_PROGRAMS = $(TESTS). We can
always separate them again if that turns out to be appropriate (though
actually I don't see why it would be - based on
https://www.gnu.org/software/automake/manual/html_node/Scripts_002dbased-Testsuites.html#Scripts_002dbased-Testsuites
it looks like they ought to be equal?).
Meanwhile, I'm stumped as to what's going on with the travis build
failure https://travis-ci.org/TokTok/c-toxcore/jobs/419265294 .
I can't reproduce it on my machine.
|
Codecov Report
@@ Coverage Diff @@
## master #1112 +/- ##
========================================
- Coverage 82.6% 82.5% -0.2%
========================================
Files 80 80
Lines 14318 14318
========================================
- Hits 11840 11819 -21
- Misses 2478 2499 +21
Continue to review full report at Codecov.
|
6448ec4
to
549c3ab
Compare
10e0b8b
to
89cfb16
Compare
* specify correct source files * add save_compatibility_test (commented out for now) * reformat TESTS to one line per test, and set check_PROGRAMS := TESTS * add run_auto_test.h to EXTRA_DIST * Fix `AUTO_TEST_CFLAGS` -> `AUTOTEST_CFLAGS`.
89cfb16
to
efcda6c
Compare
Specify correct sources, add missing test save_compatability_test, and make the
list of tests easier to edit (one line per test, not repeated).
This change is