summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@redhat.com>2009-10-12 15:19:44 +0530
committerAmit Shah <amit.shah@redhat.com>2009-10-12 15:19:44 +0530
commit26e37aecb8de22dfdc679b3cfdb984c8d3c784e4 (patch)
tree61af0e2b05e997c83fcd904c0f3d1b5d3fdd4f6e /Makefile
downloadtest-virtserial-26e37aecb8de22dfdc679b3cfdb984c8d3c784e4.tar.gz
test-virtserial-26e37aecb8de22dfdc679b3cfdb984c8d3c784e4.tar.xz
test-virtserial-26e37aecb8de22dfdc679b3cfdb984c8d3c784e4.zip
test-virtserial: A set of tests to check generic virtio serial ports
The old virtio-console is now capable of handling generic serial ports as well. This code base targets at testing the various paths in the virtio-console (or virtio-serial) codebase, in the kernel as well as in qemu (kernel in the guest, qemu on the host). This test is an interactive session. An automated test will follow. Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..740c855
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+all: test-virtserial
+ $(CC) $(CFLAGS) -o $< $<.c
+
+debug: test-virtserial
+ $(CC) $(CFLAGS) -DDEBUG=1 -o $< $<.c
+
+.PHONY: all debug