libstdc++: Disable expensive test for debug mode [PR108636]

This test uses -fkeep-inline-functions and with debug mode enabled that
compiles much slower and times out if the system is under heavy load.

The original problem being tested is independent of debug mode, so just
require normal mode for the test.

libstdc++-v3/ChangeLog:

	PR libstdc++/108636
	* testsuite/27_io/filesystem/path/108636.cc: Require normal
	mode.
This commit is contained in:
Jonathan Wakely 2024-07-11 09:40:12 +01:00 committed by Jonathan Wakely
parent 7c11fdd2cc
commit 8dbc02ba43
No known key found for this signature in database

View file

@ -1,6 +1,7 @@
// { dg-do link { target c++17 } }
// { dg-options "-fkeep-inline-functions" }
// { dg-require-filesystem-ts "" }
// { dg-require-normal-mode "too slow with debug mode" }
#include <filesystem>
int main()