-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[test] Make all tests green when using a minimal build #20711
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4bdf49e
59e0d67
ceaf658
4732db3
94c0e70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,4 +89,9 @@ ROOTTEST_ADD_TEST(hello_ROOT_C | |
| OUTREF hello_ROOT_C_${libsuf}.ref | ||
| FIXTURES_REQUIRED root-meta-hello_ROOT-fixture) | ||
|
|
||
| if(NOT minimal) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is that really the best test? What 'feature(s)' is missing that make the test not working? |
||
| ROOTTEST_ADD_TEST(optionList | ||
| MACRO optionList.cxx) | ||
| endif() | ||
|
|
||
| ROOTTEST_ADD_TESTDIRS() | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -423,6 +423,12 @@ else() | |
| list(APPEND root7_veto io/ntuple/ntpl011_global_temperatures.C) | ||
| endif() | ||
|
|
||
| #---These do not run with minimal | ||
| if(minimal) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is that really the best test? What 'feature' is missing that make the test not working? |
||
| set(minimal_veto visualisation/graphics/formula1.C) # relies on unstable ROOT::Detail::HasBeenDeleted | ||
| endif() | ||
|
|
||
|
|
||
| #---These ones are disabled !!! ------------------------------------ | ||
| set(extra_veto | ||
| legacy/benchmarks.C | ||
|
|
@@ -514,6 +520,7 @@ set(all_veto hsimple.C | |
| ${spectrum_veto} | ||
| ${dataframe_veto} | ||
| ${davix_veto} | ||
| ${minimal_veto} | ||
| ) | ||
|
|
||
| file(GLOB_RECURSE tutorials RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.C) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that really the best test? What 'feature(s)' is missing that make the test not working?