mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
a21a2f8edb
Currently, in tests/volser/vos-t.c we call afs_com_err as
"authname-t", which is clearly a mistake during some code refactoring
(introduced in commit 2ce3fdc5
, "tests: Abstract out code to produce a
Ubik client").
We could just change this to "vos-t", but instead of specifying
constant strings everywhere, change this to figure out what the
current command is called, and just use that. Put this code into a new
function, afstest_GetProgname, and convert existing tests to use that
instead of hard-coding the program name given to afs_com_err.
Change-Id: I3ed02c89f93798568783c7d717e8fb2e39dcce14
Reviewed-on: https://gerrit.openafs.org/13991
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
|
|
srcdir=@srcdir@
|
|
abs_top_builddir=@abs_top_builddir@
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
include @TOP_OBJDIR@/src/config/Makefile.pthread
|
|
|
|
TESTS = authcon-t superuser-t keys-t realms-t
|
|
|
|
MODULE_CFLAGS=-I$(TOP_OBJDIR) -I$(srcdir)/../common/
|
|
|
|
all check test tests: $(TESTS)
|
|
|
|
MODULE_LIBS = ../tap/libtap.a \
|
|
$(abs_top_builddir)/src/auth/liboafs_auth.la \
|
|
$(LIB_rfc3961) $(LIB_roken) \
|
|
$(XLIBS)
|
|
|
|
authcon-t: authcon-t.o ../common/config.o ../common/network.o
|
|
$(LT_LDRULE_static) authcon-t.o ../common/config.o ../common/network.o \
|
|
$(MODULE_LIBS)
|
|
|
|
superuser-t: superuser-t.o ../common/config.o ../common/rxkad.o \
|
|
test.cs.o test.ss.o test.xdr.o ../common/network.o \
|
|
../common/misc.o
|
|
$(LT_LDRULE_static) superuser-t.o ../common/config.o \
|
|
../common/rxkad.o ../common/servers.o \
|
|
test.cs.o test.ss.o test.xdr.o ../common/network.o \
|
|
../common/misc.o $(MODULE_LIBS)
|
|
|
|
keys-t: keys-t.o ../common/config.o ../common/network.o
|
|
$(LT_LDRULE_static) keys-t.o ../common/config.o ../common/network.o $(MODULE_LIBS)
|
|
|
|
realms-t: realms-t.o ../common/config.o ../common/network.o
|
|
$(LT_LDRULE_static) realms-t.o ../common/config.o ../common/network.o $(MODULE_LIBS)
|
|
|
|
writekeyfile: writekeyfile.o
|
|
$(LT_LDRULE_static) writekeyfile.o $(MODULE_LIBS)
|
|
|
|
test.cs.c: test.xg
|
|
$(RXGEN) -A -x -C -o $@ $(srcdir)/test.xg
|
|
|
|
test.ss.c: test.xg
|
|
$(RXGEN) -A -x -S -o $@ $(srcdir)/test.xg
|
|
|
|
test.xdr.c: test.xg
|
|
$(RXGEN) -A -x -c -o $@ $(srcdir)/test.xg
|
|
|
|
test.h: test.xg
|
|
$(RXGEN) -A -x -h -o $@ $(srcdir)/test.xg
|
|
|
|
superuser-t.o: test.h
|
|
|
|
clean:
|
|
$(LT_CLEAN)
|
|
rm -f *.o *.cs.c *.ss.c *.xdr.c test.h \
|
|
writekeyfile $(TESTS)
|