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