mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
c0ece254ca
Add tests for our rx_atomic macros to make sure they do what they say they do (e.g. rx_atomic_inc() adds 1). Also add a simple test running a bunch of atomic ops in multiple threads, to try to check that the operations are actually atomic. Change-Id: I6e776f280eaf547e9862ceed9798d0d43773fa2c Reviewed-on: https://gerrit.openafs.org/15279 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Cheyenne Wills <cwills@sinenomine.net> Reviewed-by: Marcio Brito Barbosa <mbarbosa@sinenomine.net> Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
27 lines
627 B
Makefile
27 lines
627 B
Makefile
# Build rules for the OpenAFS RX test suite.
|
|
|
|
srcdir=@srcdir@
|
|
abs_top_builddir=@abs_top_builddir@
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
include @TOP_OBJDIR@/src/config/Makefile.pthread
|
|
|
|
MODULE_CFLAGS = -I$(TOP_OBJDIR)
|
|
|
|
LIBS = $(abs_top_builddir)/tests/common/libafstest_common.la \
|
|
$(abs_top_builddir)/src/rx/liboafs_rx.la
|
|
|
|
BINS = atomic-t event-t
|
|
|
|
all: $(BINS)
|
|
|
|
atomic-t: atomic-t.o $(LIBS)
|
|
$(LT_LDRULE_static) atomic-t.o $(LIBS) $(LIB_roken) $(XLIBS)
|
|
|
|
event-t: event-t.o $(LIBS)
|
|
$(LT_LDRULE_static) event-t.o $(LIBS) $(LIB_roken) $(XLIBS)
|
|
install:
|
|
|
|
clean distclean:
|
|
$(LT_CLEAN)
|
|
$(RM) -f $(BINS) *.o core
|