diff --git a/src/libs/aggregation/test/test.pro b/src/libs/aggregation/test/test.pro deleted file mode 100644 index 6143ca98050e872248df521571178592f391e4db..0000000000000000000000000000000000000000 --- a/src/libs/aggregation/test/test.pro +++ /dev/null @@ -1,12 +0,0 @@ -CONFIG += qtestlib -TEMPLATE = app -CONFIG -= app_bundle -DEFINES += AGGREGATION_LIBRARY - -INCLUDEPATH += ../ -# Input -SOURCES += tst_aggregate.cpp \ - ../aggregate.cpp -HEADERS += ../aggregate.h \ - ../aggregation_global.h - diff --git a/tests/auto/aggregation/aggregation.pro b/tests/auto/aggregation/aggregation.pro new file mode 100644 index 0000000000000000000000000000000000000000..c35c696239ebacaa8042ba1f3f5d45dd32e96d28 --- /dev/null +++ b/tests/auto/aggregation/aggregation.pro @@ -0,0 +1,14 @@ +CONFIG += qtestlib +TEMPLATE = app +CONFIG -= app_bundle +DEFINES += AGGREGATION_LIBRARY + +AGGREGATION_PATH = ../../../src/libs/aggregation + +INCLUDEPATH += $$AGGREGATION_PATH +# Input +SOURCES += tst_aggregate.cpp \ + $$AGGREGATION_PATH/aggregate.cpp +HEADERS += $$AGGREGATION_PATH/aggregate.h \ + $$AGGREGATION_PATH/aggregation_global.h + diff --git a/src/libs/aggregation/test/tst_aggregate.cpp b/tests/auto/aggregation/tst_aggregate.cpp similarity index 100% rename from src/libs/aggregation/test/tst_aggregate.cpp rename to tests/auto/aggregation/tst_aggregate.cpp diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index 14a1c73eaf5bca7c590f6d139b285552b076fd4e..826e842ef9c64279563d9bd0e174e3c7178e1733 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -5,4 +5,5 @@ SUBDIRS += \ debugger \ extensionsystem \ fakevim \ - profilereader +# profilereader \ + aggregation