From 20e8a9c59c6ebb16292568469b0dbe52898b3f84 Mon Sep 17 00:00:00 2001 From: Philipp Paulweber Date: Thu, 30 Nov 2017 01:49:08 +0100 Subject: [PATCH] Unit Test: fixed Bit to Binary renaming of files * related to casm-lang/casm#54 --- etc/test/CMakeLists.txt | 4 ++-- etc/test/constant/{bit.cpp => binary.cpp} | 0 etc/test/type/{bit.cpp => binary.cpp} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename etc/test/constant/{bit.cpp => binary.cpp} (100%) rename etc/test/type/{bit.cpp => binary.cpp} (100%) diff --git a/etc/test/CMakeLists.txt b/etc/test/CMakeLists.txt index a5b9bef..3b5b0e0 100644 --- a/etc/test/CMakeLists.txt +++ b/etc/test/CMakeLists.txt @@ -55,7 +55,7 @@ add_library( ${PROJECT}-test OBJECT main.cpp type.cpp value.cpp - constant/bit.cpp + constant/binary.cpp constant/integer.cpp constant/range.cpp constant/rational.cpp @@ -66,7 +66,7 @@ add_library( ${PROJECT}-test OBJECT instruction/inv.cpp instruction/pow.cpp transform/BranchEliminationPass.cpp - type/bit.cpp + type/binary.cpp type/boolean.cpp type/decimal.cpp type/enum.cpp diff --git a/etc/test/constant/bit.cpp b/etc/test/constant/binary.cpp similarity index 100% rename from etc/test/constant/bit.cpp rename to etc/test/constant/binary.cpp diff --git a/etc/test/type/bit.cpp b/etc/test/type/binary.cpp similarity index 100% rename from etc/test/type/bit.cpp rename to etc/test/type/binary.cpp