Unit Test/timer[0] (#502)

* define CC/LD iff undef. Add timers suite

* timers_utest[0]
This commit is contained in:
David Chalco 2021-02-14 11:24:55 -08:00 committed by GitHub
parent f6dff3fea3
commit 63aec3607d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 233 additions and 3 deletions

View file

@ -1,8 +1,8 @@
# Change to match installed location
export CC=/usr/local/bin/gcc
export LD=/usr/local/bin/ld
export CC ?= /usr/local/bin/gcc
export LD ?= /usr/local/bin/ld
# Add units here when adding a new unit test directory with the same name
UNITS := queue list
UNITS := queue list timers
include makefile.in