summaryrefslogtreecommitdiffstats
path: root/testing/cppunittest.toml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/cppunittest.toml
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/cppunittest.toml')
-rw-r--r--testing/cppunittest.toml180
1 files changed, 180 insertions, 0 deletions
diff --git a/testing/cppunittest.toml b/testing/cppunittest.toml
new file mode 100644
index 0000000000..13b3966ac4
--- /dev/null
+++ b/testing/cppunittest.toml
@@ -0,0 +1,180 @@
+[DEFAULT]
+
+["ShowSSEConfig"]
+
+["TestAlgorithm"]
+
+["TestArray"]
+
+["TestArrayUtils"]
+
+["TestAtomicBitfields"]
+
+["TestAtomics"]
+
+["TestBaseProfiler"]
+skip-if = ["tsan"] # Bug 1804081
+
+["TestBinarySearch"]
+
+["TestBitSet"]
+
+["TestBloomFilter"]
+
+["TestBufferList"]
+
+["TestCasting"]
+
+["TestCeilingFloor"]
+
+["TestCheckedInt"]
+
+["TestCompactPair"]
+
+["TestCountPopulation"]
+
+["TestCountZeroes"]
+
+["TestCrossProcessWin"]
+run-if = ["os == 'win'"]
+
+["TestDefineEnum"]
+
+["TestDllBlocklistAssumptions"]
+run-if = ["os == 'win'"]
+
+["TestDllInterceptor"]
+run-if = ["os == 'win'"]
+
+["TestDoublyLinkedList"]
+
+["TestEndian"]
+
+["TestEnumSet"]
+
+["TestEnumTypeTraits"]
+
+["TestEnumeratedArray"]
+
+["TestFastBernoulliTrial"]
+
+["TestFloatingPoint"]
+
+["TestFunctionRef"]
+
+["TestFunctionTypeTraits"]
+
+["TestHashTable"]
+
+["TestIATPatcher"]
+run-if = ["os == 'win'"]
+skip-if = ["win11_2009 && bits == 32"] # fails on windows10x32
+
+["TestIntegerPrintfMacros"]
+
+["TestIntegerRange"]
+
+["TestJSONWriter"]
+
+["TestLauncherRegistryInfo"]
+run-if = ["os == 'win'"]
+
+["TestLinkedList"]
+
+["TestMMPolicy"]
+run-if = ["os == 'win'"]
+
+["TestMacroArgs"]
+
+["TestMacroForEach"]
+
+["TestMathAlgorithms"]
+
+["TestMaybe"]
+
+["TestMemoryPressureWatcherLinux"]
+skip-if = ["os != 'linux'"]
+
+["TestMozJemallocUtils"]
+
+["TestNativeNt"]
+run-if = ["os == 'win'"]
+
+["TestNonDereferenceable"]
+
+["TestNotNull"]
+
+["TestPEExportSection"]
+run-if = ["os == 'win'"]
+
+["TestPoisonArea"]
+skip-if = [
+ "asan", # Not built on sanitizer builds
+ "tsan",
+]
+
+["TestPrintf"]
+
+["TestRandomNum"]
+
+["TestRange"]
+
+["TestRefPtr"]
+
+["TestResult"]
+
+["TestRollingMean"]
+
+["TestSHA1"]
+
+["TestSIMD"]
+
+["TestSPSCQueue"]
+
+["TestSafeThreadLocal"]
+run-if = ["os == 'win'"]
+
+["TestSameBinary"]
+run-if = ["os == 'win'"]
+
+["TestSaturate"]
+
+["TestScopeExit"]
+
+["TestSegmentedVector"]
+
+["TestSmallPointerArray"]
+
+["TestSplayTree"]
+
+["TestStackCookie"]
+run-if = ["os == 'win'"]
+
+["TestTextUtils"]
+
+["TestThreadSafeWeakPtr"]
+
+["TestTimeStampWin"]
+run-if = ["os == 'win'"]
+
+["TestTypedEnum"]
+
+["TestUniquePtr"]
+
+["TestUriValidation"]
+run-if = ["os == 'win'"]
+
+["TestUtf8"]
+
+["TestVariant"]
+
+["TestVector"]
+
+["TestWeakPtr"]
+
+["TestWinArchDefs"]
+run-if = ["os == 'win'"]
+
+["TestWrappingOperations"]
+
+["TestXorShift128PlusRNG"]