From 4f89bb05531c1fb6439952ec303e55638983f61a Mon Sep 17 00:00:00 2001 From: Serge Lamikhov-Center <to_serge@users.sourceforge.net> Date: Sun, 9 Aug 2020 22:23:41 -0700 Subject: [PATCH] Rename tests directory --- .gitignore | 13 ++++++++----- .travis.yml | 2 +- ELFIO.sln | 2 +- {ELFIOTest => tests}/ELFIOTest.cpp | 0 {ELFIOTest => tests}/ELFIOTest.vcxproj | 0 {ELFIOTest => tests}/ELFIOTest.vcxproj.filters | 0 {ELFIOTest => tests}/ELFIOTest1.cpp | 0 {ELFIOTest => tests}/Makefile.am | 0 {ELFIOTest => tests}/Makefile.in | 0 {ELFIOTest => tests}/aclocal.m4 | 0 {ELFIOTest => tests}/configure | 0 {ELFIOTest => tests}/configure.ac | 0 {ELFIOTest => tests}/runELFtests | 0 13 files changed, 10 insertions(+), 7 deletions(-) rename {ELFIOTest => tests}/ELFIOTest.cpp (100%) rename {ELFIOTest => tests}/ELFIOTest.vcxproj (100%) rename {ELFIOTest => tests}/ELFIOTest.vcxproj.filters (100%) rename {ELFIOTest => tests}/ELFIOTest1.cpp (100%) rename {ELFIOTest => tests}/Makefile.am (100%) rename {ELFIOTest => tests}/Makefile.in (100%) rename {ELFIOTest => tests}/aclocal.m4 (100%) rename {ELFIOTest => tests}/configure (100%) rename {ELFIOTest => tests}/configure.ac (100%) rename {ELFIOTest => tests}/runELFtests (100%) diff --git a/.gitignore b/.gitignore index 5b26623..b66a0ae 100644 --- a/.gitignore +++ b/.gitignore @@ -7,12 +7,15 @@ ELFIO.opensdf ELFIO.v12.suo .vs tmp/ +docs + +tests/Debug +tests/Release +tests/ELFIOTest.vcxproj.user +tests/ELFIOTest +tests/ELFIOTest.exe +tests/runELFtests.trs -ELFIOTest/Debug -ELFIOTest/Release -ELFIOTest/ELFIOTest.vcxproj.user -ELFIOTest/ELFIOTest -ELFIOTest/ELFIOTest.exe examples/ELFDump/Debug examples/anonymizer/anonymizer diff --git a/.travis.yml b/.travis.yml index 8091eb6..5737c2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ script: - autoreconf -f -i - ./configure CXXFLAGS=--std=c++11 - make -- cd ELFIOTest +- cd tests - autoreconf -f -i - ./configure CXXFLAGS=--std=c++11 - make check diff --git a/ELFIO.sln b/ELFIO.sln index ebad862..a8185ba 100644 --- a/ELFIO.sln +++ b/ELFIO.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ELFDump", "examples\elfdump\ELFDump.vcxproj", "{CBAA735F-E237-4976-909F-2349920ED871}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ELFIOTest", "ELFIOTest\ELFIOTest.vcxproj", "{FC8A3379-B8AA-4C32-804F-F8C43AFBC2A1}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ELFIOTest", "tests\ELFIOTest.vcxproj", "{FC8A3379-B8AA-4C32-804F-F8C43AFBC2A1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "writer", "examples\writer\writer.vcxproj", "{4E5A96DB-F6E9-4EEE-90BE-67B722DA8C84}" EndProject diff --git a/ELFIOTest/ELFIOTest.cpp b/tests/ELFIOTest.cpp similarity index 100% rename from ELFIOTest/ELFIOTest.cpp rename to tests/ELFIOTest.cpp diff --git a/ELFIOTest/ELFIOTest.vcxproj b/tests/ELFIOTest.vcxproj similarity index 100% rename from ELFIOTest/ELFIOTest.vcxproj rename to tests/ELFIOTest.vcxproj diff --git a/ELFIOTest/ELFIOTest.vcxproj.filters b/tests/ELFIOTest.vcxproj.filters similarity index 100% rename from ELFIOTest/ELFIOTest.vcxproj.filters rename to tests/ELFIOTest.vcxproj.filters diff --git a/ELFIOTest/ELFIOTest1.cpp b/tests/ELFIOTest1.cpp similarity index 100% rename from ELFIOTest/ELFIOTest1.cpp rename to tests/ELFIOTest1.cpp diff --git a/ELFIOTest/Makefile.am b/tests/Makefile.am similarity index 100% rename from ELFIOTest/Makefile.am rename to tests/Makefile.am diff --git a/ELFIOTest/Makefile.in b/tests/Makefile.in similarity index 100% rename from ELFIOTest/Makefile.in rename to tests/Makefile.in diff --git a/ELFIOTest/aclocal.m4 b/tests/aclocal.m4 similarity index 100% rename from ELFIOTest/aclocal.m4 rename to tests/aclocal.m4 diff --git a/ELFIOTest/configure b/tests/configure similarity index 100% rename from ELFIOTest/configure rename to tests/configure diff --git a/ELFIOTest/configure.ac b/tests/configure.ac similarity index 100% rename from ELFIOTest/configure.ac rename to tests/configure.ac diff --git a/ELFIOTest/runELFtests b/tests/runELFtests similarity index 100% rename from ELFIOTest/runELFtests rename to tests/runELFtests -- GitLab