aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests
diff options
context:
space:
mode:
authorFriedemann Kleint <[email protected]>2024-12-13 09:52:29 +0100
committerFriedemann Kleint <[email protected]>2024-12-13 10:21:46 +0100
commit21d8a3f57ba9136f8d181af6d5aa0ba9a5cdb8b7 (patch)
tree5460b893e9cd48d4f9e9e24dd99469aaf1f5c9e4 /sources/shiboken6/tests
parentf6069b9330fc01b68296ef4dffd474ed98784ec6 (diff)
Fix trailing empty lines
Pick-to: 6.8 Change-Id: I1a5964463f703ade0657816cb974206355a5ae5b Reviewed-by: Shyamnath Premnadh <[email protected]>
Diffstat (limited to 'sources/shiboken6/tests')
-rw-r--r--sources/shiboken6/tests/libminimal/CMakeLists.txt1
-rw-r--r--sources/shiboken6/tests/libminimal/listuser.h1
-rw-r--r--sources/shiboken6/tests/libminimal/obj.cpp1
-rw-r--r--sources/shiboken6/tests/libminimal/obj.h1
-rw-r--r--sources/shiboken6/tests/libminimal/val.h1
-rw-r--r--sources/shiboken6/tests/libother/CMakeLists.txt2
-rw-r--r--sources/shiboken6/tests/libsample/CMakeLists.txt1
-rw-r--r--sources/shiboken6/tests/libsample/collector.h1
-rw-r--r--sources/shiboken6/tests/libsample/complex.h1
-rw-r--r--sources/shiboken6/tests/libsample/derived.h1
-rw-r--r--sources/shiboken6/tests/libsample/filter.h2
-rw-r--r--sources/shiboken6/tests/libsample/injectcode.h1
-rw-r--r--sources/shiboken6/tests/libsample/listuser.h1
-rw-r--r--sources/shiboken6/tests/libsample/main.cpp1
-rw-r--r--sources/shiboken6/tests/libsample/modified_constructor.cpp2
-rw-r--r--sources/shiboken6/tests/libsample/modified_constructor.h1
-rw-r--r--sources/shiboken6/tests/libsample/noimplicitconversion.h1
-rw-r--r--sources/shiboken6/tests/libsmart/CMakeLists.txt1
-rw-r--r--sources/shiboken6/tests/otherbinding/CMakeLists.txt1
-rw-r--r--sources/shiboken6/tests/test_generator/CMakeLists.txt1
-rw-r--r--sources/shiboken6/tests/test_generator/dummygenerator.cpp1
-rw-r--r--sources/shiboken6/tests/test_generator/dummygentest-project.txt.in1
-rw-r--r--sources/shiboken6/tests/test_generator/dummygentest.cpp1
-rw-r--r--sources/shiboken6/tests/test_generator/dummygentest.h1
-rw-r--r--sources/shiboken6/tests/test_generator/dummygentestconfig.h.in1
-rw-r--r--sources/shiboken6/tests/test_generator/main.cpp1
26 files changed, 0 insertions, 29 deletions
diff --git a/sources/shiboken6/tests/libminimal/CMakeLists.txt b/sources/shiboken6/tests/libminimal/CMakeLists.txt
index 4a10f96bf..e1d7dda38 100644
--- a/sources/shiboken6/tests/libminimal/CMakeLists.txt
+++ b/sources/shiboken6/tests/libminimal/CMakeLists.txt
@@ -18,4 +18,3 @@ add_library(libminimal SHARED ${libminimal_SRC})
target_include_directories(libminimal PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(libminimal PRIVATE LIBMINIMAL_BUILD)
set_property(TARGET libminimal PROPERTY PREFIX "")
-
diff --git a/sources/shiboken6/tests/libminimal/listuser.h b/sources/shiboken6/tests/libminimal/listuser.h
index 9904ef27d..281851088 100644
--- a/sources/shiboken6/tests/libminimal/listuser.h
+++ b/sources/shiboken6/tests/libminimal/listuser.h
@@ -69,4 +69,3 @@ struct LIBMINIMAL_API ListUser
};
#endif // LISTUSER_H
-
diff --git a/sources/shiboken6/tests/libminimal/obj.cpp b/sources/shiboken6/tests/libminimal/obj.cpp
index a63a9c3c9..9de87cd3c 100644
--- a/sources/shiboken6/tests/libminimal/obj.cpp
+++ b/sources/shiboken6/tests/libminimal/obj.cpp
@@ -13,4 +13,3 @@ bool Obj::virtualMethod(int val)
{
return !bool(val%2);
}
-
diff --git a/sources/shiboken6/tests/libminimal/obj.h b/sources/shiboken6/tests/libminimal/obj.h
index be0bfb52b..10cf54e71 100644
--- a/sources/shiboken6/tests/libminimal/obj.h
+++ b/sources/shiboken6/tests/libminimal/obj.h
@@ -31,4 +31,3 @@ private:
};
#endif // OBJ_H
-
diff --git a/sources/shiboken6/tests/libminimal/val.h b/sources/shiboken6/tests/libminimal/val.h
index 50f090a7d..c989cab7b 100644
--- a/sources/shiboken6/tests/libminimal/val.h
+++ b/sources/shiboken6/tests/libminimal/val.h
@@ -33,4 +33,3 @@ private:
};
#endif // VAL_H
-
diff --git a/sources/shiboken6/tests/libother/CMakeLists.txt b/sources/shiboken6/tests/libother/CMakeLists.txt
index 0379d740b..ee8e285f2 100644
--- a/sources/shiboken6/tests/libother/CMakeLists.txt
+++ b/sources/shiboken6/tests/libother/CMakeLists.txt
@@ -19,5 +19,3 @@ target_include_directories(libother PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(libother PRIVATE LIBOTHER_BUILD)
target_link_libraries(libother PUBLIC libsample libsmart)
set_property(TARGET libother PROPERTY PREFIX "")
-
-
diff --git a/sources/shiboken6/tests/libsample/CMakeLists.txt b/sources/shiboken6/tests/libsample/CMakeLists.txt
index 926972340..ac0ef0511 100644
--- a/sources/shiboken6/tests/libsample/CMakeLists.txt
+++ b/sources/shiboken6/tests/libsample/CMakeLists.txt
@@ -92,4 +92,3 @@ add_library(libsample SHARED ${libsample_SRC})
target_include_directories(libsample PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(libsample PRIVATE LIBSAMPLE_BUILD)
set_property(TARGET libsample PROPERTY PREFIX "")
-
diff --git a/sources/shiboken6/tests/libsample/collector.h b/sources/shiboken6/tests/libsample/collector.h
index 26766847a..60e90d7b8 100644
--- a/sources/shiboken6/tests/libsample/collector.h
+++ b/sources/shiboken6/tests/libsample/collector.h
@@ -34,4 +34,3 @@ private:
LIBSAMPLE_API Collector &operator<<(Collector &, const IntWrapper &);
#endif // COLLECTOR_H
-
diff --git a/sources/shiboken6/tests/libsample/complex.h b/sources/shiboken6/tests/libsample/complex.h
index 168fe5c44..1fa6b3305 100644
--- a/sources/shiboken6/tests/libsample/complex.h
+++ b/sources/shiboken6/tests/libsample/complex.h
@@ -29,4 +29,3 @@ private:
};
#endif // COMPLEX_H
-
diff --git a/sources/shiboken6/tests/libsample/derived.h b/sources/shiboken6/tests/libsample/derived.h
index cf95cb601..6ed58ee28 100644
--- a/sources/shiboken6/tests/libsample/derived.h
+++ b/sources/shiboken6/tests/libsample/derived.h
@@ -69,4 +69,3 @@ private:
void pureVirtualPrivate() override;
};
#endif // DERIVED_H
-
diff --git a/sources/shiboken6/tests/libsample/filter.h b/sources/shiboken6/tests/libsample/filter.h
index d82d38eb8..61d57f1c3 100644
--- a/sources/shiboken6/tests/libsample/filter.h
+++ b/sources/shiboken6/tests/libsample/filter.h
@@ -66,5 +66,3 @@ private:
LIBSAMPLE_API Intersection operator&(const Intersection &a, const Intersection &b);
#endif // FILTER_H
-
-
diff --git a/sources/shiboken6/tests/libsample/injectcode.h b/sources/shiboken6/tests/libsample/injectcode.h
index 74046dad5..2d3db9c7c 100644
--- a/sources/shiboken6/tests/libsample/injectcode.h
+++ b/sources/shiboken6/tests/libsample/injectcode.h
@@ -41,4 +41,3 @@ private:
};
#endif // INJECTCODE_H
-
diff --git a/sources/shiboken6/tests/libsample/listuser.h b/sources/shiboken6/tests/libsample/listuser.h
index 96781ed16..69559cde5 100644
--- a/sources/shiboken6/tests/libsample/listuser.h
+++ b/sources/shiboken6/tests/libsample/listuser.h
@@ -50,4 +50,3 @@ private:
};
#endif // LISTUSER_H
-
diff --git a/sources/shiboken6/tests/libsample/main.cpp b/sources/shiboken6/tests/libsample/main.cpp
index 1b44642ae..4c4d309fd 100644
--- a/sources/shiboken6/tests/libsample/main.cpp
+++ b/sources/shiboken6/tests/libsample/main.cpp
@@ -206,4 +206,3 @@ main(int argv, char **argc)
return 0;
}
-
diff --git a/sources/shiboken6/tests/libsample/modified_constructor.cpp b/sources/shiboken6/tests/libsample/modified_constructor.cpp
index c39c97738..153681310 100644
--- a/sources/shiboken6/tests/libsample/modified_constructor.cpp
+++ b/sources/shiboken6/tests/libsample/modified_constructor.cpp
@@ -12,5 +12,3 @@ int ModifiedConstructor::retrieveValue() const
{
return m_stored_value;
}
-
-
diff --git a/sources/shiboken6/tests/libsample/modified_constructor.h b/sources/shiboken6/tests/libsample/modified_constructor.h
index a27899f3f..bf5ee2c68 100644
--- a/sources/shiboken6/tests/libsample/modified_constructor.h
+++ b/sources/shiboken6/tests/libsample/modified_constructor.h
@@ -18,4 +18,3 @@ private:
};
#endif // MODIFIEDCONSTRUCTOR_H
-
diff --git a/sources/shiboken6/tests/libsample/noimplicitconversion.h b/sources/shiboken6/tests/libsample/noimplicitconversion.h
index a0b91380b..995189e96 100644
--- a/sources/shiboken6/tests/libsample/noimplicitconversion.h
+++ b/sources/shiboken6/tests/libsample/noimplicitconversion.h
@@ -24,4 +24,3 @@ private:
};
#endif // NOIMPLICITCONVERSION_H
-
diff --git a/sources/shiboken6/tests/libsmart/CMakeLists.txt b/sources/shiboken6/tests/libsmart/CMakeLists.txt
index 95f0cffd6..7de0d11ac 100644
--- a/sources/shiboken6/tests/libsmart/CMakeLists.txt
+++ b/sources/shiboken6/tests/libsmart/CMakeLists.txt
@@ -20,4 +20,3 @@ add_library(libsmart SHARED ${libsmart_SRC})
target_include_directories(libsmart PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(libsmart PRIVATE LIBSMART_BUILD)
set_property(TARGET libsmart PROPERTY PREFIX "")
-
diff --git a/sources/shiboken6/tests/otherbinding/CMakeLists.txt b/sources/shiboken6/tests/otherbinding/CMakeLists.txt
index 0ec3d998f..2fbc5996e 100644
--- a/sources/shiboken6/tests/otherbinding/CMakeLists.txt
+++ b/sources/shiboken6/tests/otherbinding/CMakeLists.txt
@@ -59,4 +59,3 @@ endif()
add_dependencies(other sample smart)
create_generator_target(other)
-
diff --git a/sources/shiboken6/tests/test_generator/CMakeLists.txt b/sources/shiboken6/tests/test_generator/CMakeLists.txt
index e1d078894..c2f76167d 100644
--- a/sources/shiboken6/tests/test_generator/CMakeLists.txt
+++ b/sources/shiboken6/tests/test_generator/CMakeLists.txt
@@ -62,4 +62,3 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/dummygentest-project.txt.in"
declare_test(dummygentest)
add_dependencies(dummygenerator generatorrunner)
-
diff --git a/sources/shiboken6/tests/test_generator/dummygenerator.cpp b/sources/shiboken6/tests/test_generator/dummygenerator.cpp
index 8a5079820..7177bc75c 100644
--- a/sources/shiboken6/tests/test_generator/dummygenerator.cpp
+++ b/sources/shiboken6/tests/test_generator/dummygenerator.cpp
@@ -42,4 +42,3 @@ DummyGenerator::doSetup(const QMap<QString, QString>& args)
}
return true;
}
-
diff --git a/sources/shiboken6/tests/test_generator/dummygentest-project.txt.in b/sources/shiboken6/tests/test_generator/dummygentest-project.txt.in
index 0a076d8bd..174f82f78 100644
--- a/sources/shiboken6/tests/test_generator/dummygentest-project.txt.in
+++ b/sources/shiboken6/tests/test_generator/dummygentest-project.txt.in
@@ -17,4 +17,3 @@ api-version = 1.2.3
debug = sparse
no-suppress-warnings
-
diff --git a/sources/shiboken6/tests/test_generator/dummygentest.cpp b/sources/shiboken6/tests/test_generator/dummygentest.cpp
index d439e3d8c..f2f6bd3e3 100644
--- a/sources/shiboken6/tests/test_generator/dummygentest.cpp
+++ b/sources/shiboken6/tests/test_generator/dummygentest.cpp
@@ -111,4 +111,3 @@ void DummyGenTest::testProjectFileArgumentsReading()
QTEST_APPLESS_MAIN(DummyGenTest)
#include "dummygentest.moc"
-
diff --git a/sources/shiboken6/tests/test_generator/dummygentest.h b/sources/shiboken6/tests/test_generator/dummygentest.h
index 1b1143b0a..ab5a69fe1 100644
--- a/sources/shiboken6/tests/test_generator/dummygentest.h
+++ b/sources/shiboken6/tests/test_generator/dummygentest.h
@@ -28,4 +28,3 @@ private slots:
};
#endif
-
diff --git a/sources/shiboken6/tests/test_generator/dummygentestconfig.h.in b/sources/shiboken6/tests/test_generator/dummygentestconfig.h.in
index 9da17dcd3..002d846a2 100644
--- a/sources/shiboken6/tests/test_generator/dummygentestconfig.h.in
+++ b/sources/shiboken6/tests/test_generator/dummygentestconfig.h.in
@@ -12,4 +12,3 @@
#endif
#endif // DUMMYGENTESTCONFIG_H
-
diff --git a/sources/shiboken6/tests/test_generator/main.cpp b/sources/shiboken6/tests/test_generator/main.cpp
index ba4440b2f..325936d56 100644
--- a/sources/shiboken6/tests/test_generator/main.cpp
+++ b/sources/shiboken6/tests/test_generator/main.cpp
@@ -11,4 +11,3 @@ int main(int argc, char *argv[])
args.append(argv[i]);
return QProcess::execute("generatorrunner", args);
}
-