@@ -66,7 +66,7 @@ TEST(ArgsTestGroup, Args_CustomToolchain) {
6666// Toolchain
6767CHECK_TRUE (gcc_toolchain.state .build );
6868CHECK_FALSE (gcc_toolchain.state .test );
69- CHECK (gcc_toolchain.id == buildcc::base:: Toolchain::Id::Gcc);
69+ CHECK (gcc_toolchain.id == buildcc::Toolchain::Id::Gcc);
7070STRCMP_EQUAL (gcc_toolchain.name .c_str ()," gcc" );
7171STRCMP_EQUAL (gcc_toolchain.asm_compiler .c_str ()," as" );
7272STRCMP_EQUAL (gcc_toolchain.c_compiler .c_str ()," gcc" );
@@ -104,7 +104,7 @@ TEST(ArgsTestGroup, Args_MultipleCustomToolchain) {
104104// GCC
105105CHECK_TRUE (gcc_toolchain.state .build );
106106CHECK_FALSE (gcc_toolchain.state .test );
107- CHECK (gcc_toolchain.id == buildcc::base:: Toolchain::Id::Gcc);
107+ CHECK (gcc_toolchain.id == buildcc::Toolchain::Id::Gcc);
108108STRCMP_EQUAL (gcc_toolchain.name .c_str ()," gcc" );
109109STRCMP_EQUAL (gcc_toolchain.asm_compiler .c_str ()," as" );
110110STRCMP_EQUAL (gcc_toolchain.c_compiler .c_str ()," gcc" );
@@ -115,7 +115,7 @@ TEST(ArgsTestGroup, Args_MultipleCustomToolchain) {
115115// MSVC
116116CHECK_TRUE (msvc_toolchain.state .build );
117117CHECK_TRUE (msvc_toolchain.state .test );
118- CHECK (msvc_toolchain.id == buildcc::base:: Toolchain::Id::Msvc);
118+ CHECK (msvc_toolchain.id == buildcc::Toolchain::Id::Msvc);
119119STRCMP_EQUAL (msvc_toolchain.name .c_str ()," msvc" );
120120STRCMP_EQUAL (msvc_toolchain.asm_compiler .c_str ()," cl" );
121121STRCMP_EQUAL (msvc_toolchain.c_compiler .c_str ()," cl" );
@@ -165,7 +165,7 @@ TEST(ArgsTestGroup, Args_CustomTarget) {
165165// Toolchain
166166CHECK_TRUE (gcc_toolchain.state .build );
167167CHECK_FALSE (gcc_toolchain.state .test );
168- CHECK (gcc_toolchain.id == buildcc::base:: Toolchain::Id::Gcc);
168+ CHECK (gcc_toolchain.id == buildcc::Toolchain::Id::Gcc);
169169STRCMP_EQUAL (gcc_toolchain.name .c_str ()," gcc" );
170170STRCMP_EQUAL (gcc_toolchain.asm_compiler .c_str ()," as" );
171171STRCMP_EQUAL (gcc_toolchain.c_compiler .c_str ()," gcc" );
@@ -219,7 +219,7 @@ TEST(ArgsTestGroup, Args_MultipleCustomTarget) {
219219// Toolchain
220220CHECK_TRUE (gcc_toolchain.state .build );
221221CHECK_FALSE (gcc_toolchain.state .test );
222- CHECK (gcc_toolchain.id == buildcc::base:: Toolchain::Id::Gcc);
222+ CHECK (gcc_toolchain.id == buildcc::Toolchain::Id::Gcc);
223223STRCMP_EQUAL (gcc_toolchain.name .c_str ()," gcc" );
224224STRCMP_EQUAL (gcc_toolchain.asm_compiler .c_str ()," as" );
225225STRCMP_EQUAL (gcc_toolchain.c_compiler .c_str ()," gcc" );
@@ -240,7 +240,7 @@ TEST(ArgsTestGroup, Args_MultipleCustomTarget) {
240240// Toolchain
241241CHECK_TRUE (msvc_toolchain.state .build );
242242CHECK_TRUE (msvc_toolchain.state .test );
243- CHECK (msvc_toolchain.id == buildcc::base:: Toolchain::Id::Msvc);
243+ CHECK (msvc_toolchain.id == buildcc::Toolchain::Id::Msvc);
244244STRCMP_EQUAL (msvc_toolchain.name .c_str ()," msvc" );
245245STRCMP_EQUAL (msvc_toolchain.asm_compiler .c_str ()," cl" );
246246STRCMP_EQUAL (msvc_toolchain.c_compiler .c_str ()," cl" );