Skip to content

Commit

Permalink
TEST: Renaming all tests to start with 'test_'
Browse files Browse the repository at this point in the history
  • Loading branch information
NTmatter committed Feb 4, 2011
1 parent c5433ad commit 1979943
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions src/sys/CMakeLists.txt
Expand Up @@ -26,35 +26,35 @@ add_library (llboy ${SYSTEM_SOURCES})
add_library (llboy_system ${SYSTEM_SOURCES})

# Tests
add_executable(cpu_test_basic cpu_test_basic.c)
target_link_libraries(cpu_test_basic llboy_system)
add_test("CpuBasics" cpu_test_basic)
add_executable(test_cpu_basic test_cpu_basic.c)
target_link_libraries(test_cpu_basic llboy_system)
add_test("CpuBasics" test_cpu_basic)

add_executable(cpu_test_arithmetic cpu_test_arithmetic.c)
target_link_libraries(cpu_test_arithmetic llboy_system)
add_test("CpuArithmetic" cpu_test_arithmetic)
add_executable(test_cpu_arithmetic test_cpu_arithmetic.c)
target_link_libraries(test_cpu_arithmetic llboy_system)
add_test("CpuArithmetic" test_cpu_arithmetic)

add_executable(cpu_test_stack cpu_test_stack.c)
target_link_libraries(cpu_test_stack llboy_system)
add_test("CpuStack" cpu_test_stack)
add_executable(test_cpu_stack test_cpu_stack.c)
target_link_libraries(test_cpu_stack llboy_system)
add_test("CpuStack" test_cpu_stack)

add_executable(cpu_test_controlflow cpu_test_controlflow.c)
target_link_libraries(cpu_test_controlflow llboy_system)
add_test("CpuControlFlow" cpu_test_controlflow)
add_executable(test_cpu_controlflow test_cpu_controlflow.c)
target_link_libraries(test_cpu_controlflow llboy_system)
add_test("CpuControlFlow" test_cpu_controlflow)

add_executable(cpu_test_compare cpu_test_compare.c)
target_link_libraries(cpu_test_compare llboy_system)
add_test("CpuCompare" cpu_test_compare)
add_executable(test_cpu_compare test_cpu_compare.c)
target_link_libraries(test_cpu_compare llboy_system)
add_test("CpuCompare" test_cpu_compare)

add_executable(cpu_test_bit cpu_test_bit.c)
target_link_libraries(cpu_test_bit llboy_system)
add_test("CpuBitOps" cpu_test_bit)
add_executable(test_cpu_bit test_cpu_bit.c)
target_link_libraries(test_cpu_bit llboy_system)
add_test("CpuBitOps" test_cpu_bit)

# MMU Tests
add_executable(mmu_test_contiguous mmu_test_contiguous.c)
target_link_libraries(mmu_test_contiguous llboy_system)
add_test("MmuRegions" mmu_test_contiguous)
add_executable(test_mmu_contiguous test_mmu_contiguous.c)
target_link_libraries(test_mmu_contiguous llboy_system)
add_test("MmuRegions" test_mmu_contiguous)

add_executable(mmu_test_rw mmu_test_rw.c)
target_link_libraries(mmu_test_rw llboy_system)
add_test("MmuReadWrite" mmu_test_rw)
add_executable(test_mmu_rw test_mmu_rw.c)
target_link_libraries(test_mmu_rw llboy_system)
add_test("MmuReadWrite" test_mmu_rw)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 1979943

Please sign in to comment.