aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-07-14 13:24:11 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-07-14 13:24:11 +0100
commit30c794d5c5cb8cb16ccf1b8c8b755db8d80dfeee (patch)
tree13e73d9c94d419760f1b848f1c940e7f1d571642
parent2763c22ebac4e6990b90f7a5db62f4d0e58d7e49 (diff)
downloadxen-30c794d5c5cb8cb16ccf1b8c8b755db8d80dfeee.tar.gz
xen-30c794d5c5cb8cb16ccf1b8c8b755db8d80dfeee.tar.bz2
xen-30c794d5c5cb8cb16ccf1b8c8b755db8d80dfeee.zip
libxl: rename testenum->testidl
I plan to add some non-Enumeration tests. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <ian.jackson.citrix.com>
-rw-r--r--.hgignore4
-rw-r--r--tools/libxl/Makefile14
2 files changed, 9 insertions, 9 deletions
diff --git a/.hgignore b/.hgignore
index 0797f64de6..cdb6f36f96 100644
--- a/.hgignore
+++ b/.hgignore
@@ -187,8 +187,8 @@
^tools/libxl/_.*\.c$
^tools/libxl/libxlu_cfg_y\.output$
^tools/libxl/xl$
-^tools/libxl/testenum$
-^tools/libxl/testenum\.c$
+^tools/libxl/testidl$
+^tools/libxl/testidl\.c$
^tools/libaio/src/.*\.ol$
^tools/libaio/src/.*\.os$
^tools/misc/cpuperf/cpuperf-perfcntr$
diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
index 78434fe804..3eeb26f90b 100644
--- a/tools/libxl/Makefile
+++ b/tools/libxl/Makefile
@@ -45,16 +45,16 @@ LIBXLU_OBJS = libxlu_cfg_y.o libxlu_cfg_l.o libxlu_cfg.o \
libxlu_disk_l.o libxlu_disk.o
$(LIBXLU_OBJS): CFLAGS += $(CFLAGS_libxenctrl) # For xentoollog.h
-CLIENTS = xl testenum
+CLIENTS = xl testidl
XL_OBJS = xl.o xl_cmdimpl.o xl_cmdtable.o
$(XL_OBJS): CFLAGS += $(CFLAGS_libxenctrl) # For xentoollog.h
$(XL_OBJS): CFLAGS += $(CFLAGS_libxenlight)
-testenum.o: CFLAGS += $(CFLAGS_libxenctrl) $(CFLAGS_libxenlight)
-testenum.c: libxl.idl gentest.py libxl.h
- $(PYTHON) gentest.py libxl.idl testenum.c.new
- mv testenum.c.new testenum.c
+testidl.o: CFLAGS += $(CFLAGS_libxenctrl) $(CFLAGS_libxenlight)
+testidl.c: libxl.idl gentest.py libxl.h
+ $(PYTHON) gentest.py libxl.idl testidl.c.new
+ mv testidl.c.new testidl.c
.PHONY: all
all: $(CLIENTS) libxenlight.so libxenlight.a libxlutil.so libxlutil.a \
@@ -116,8 +116,8 @@ libxlutil.a: $(LIBXLU_OBJS)
xl: $(XL_OBJS) libxlutil.so libxenlight.so
$(CC) $(LDFLAGS) -o $@ $(XL_OBJS) libxlutil.so $(LDLIBS_libxenlight) $(LDLIBS_libxenctrl)
-testenum: testenum.o libxlutil.so libxenlight.so
- $(CC) $(LDFLAGS) -o $@ testenum.o libxlutil.so $(LDLIBS_libxenlight) $(LDLIBS_libxenctrl)
+testidl: testidl.o libxlutil.so libxenlight.so
+ $(CC) $(LDFLAGS) -o $@ testidl.o libxlutil.so $(LDLIBS_libxenlight) $(LDLIBS_libxenctrl)
.PHONY: install
install: all