From fc7c8e1639b7d489a7b7bc6c8cd2a42b7d7bf4c1 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Sun, 2 May 2021 12:12:59 -0700 Subject: [PATCH] driver tests updates --- driver/tests/basic/Makefile | 2 +- driver/tests/basic/{basic.cpp => main.cpp} | 0 driver/tests/demo/Makefile | 2 +- driver/tests/demo/{demo.cpp => main.cpp} | 0 driver/tests/dogfood/Makefile | 2 +- driver/tests/dogfood/{dogfood.cpp => main.cpp} | 0 6 files changed, 3 insertions(+), 3 deletions(-) rename driver/tests/basic/{basic.cpp => main.cpp} (100%) rename driver/tests/demo/{demo.cpp => main.cpp} (100%) rename driver/tests/dogfood/{dogfood.cpp => main.cpp} (100%) diff --git a/driver/tests/basic/Makefile b/driver/tests/basic/Makefile index 621a0901..c0676952 100644 --- a/driver/tests/basic/Makefile +++ b/driver/tests/basic/Makefile @@ -24,7 +24,7 @@ LDFLAGS += PROJECT = basic -SRCS = basic.cpp +SRCS = main.cpp all: $(PROJECT) kernel.bin kernel.dump diff --git a/driver/tests/basic/basic.cpp b/driver/tests/basic/main.cpp similarity index 100% rename from driver/tests/basic/basic.cpp rename to driver/tests/basic/main.cpp diff --git a/driver/tests/demo/Makefile b/driver/tests/demo/Makefile index 8ca0c6c8..e0cee958 100644 --- a/driver/tests/demo/Makefile +++ b/driver/tests/demo/Makefile @@ -22,7 +22,7 @@ CXXFLAGS += -I../../include PROJECT = demo -SRCS = demo.cpp +SRCS = main.cpp all: $(PROJECT) kernel.bin kernel.dump diff --git a/driver/tests/demo/demo.cpp b/driver/tests/demo/main.cpp similarity index 100% rename from driver/tests/demo/demo.cpp rename to driver/tests/demo/main.cpp diff --git a/driver/tests/dogfood/Makefile b/driver/tests/dogfood/Makefile index 74d86837..e8ba0530 100644 --- a/driver/tests/dogfood/Makefile +++ b/driver/tests/dogfood/Makefile @@ -24,7 +24,7 @@ CXXFLAGS += -I../../include -I../../../hw PROJECT = dogfood -SRCS = dogfood.cpp +SRCS = main.cpp all: $(PROJECT) kernel.bin kernel.dump diff --git a/driver/tests/dogfood/dogfood.cpp b/driver/tests/dogfood/main.cpp similarity index 100% rename from driver/tests/dogfood/dogfood.cpp rename to driver/tests/dogfood/main.cpp