-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Aha! Skip DebuggerTests bc. they simulate a user interrupt which will…
… abort test execution on the CI. Unfortunately, STON has no syntax for comments.
- Loading branch information
1 parent
f00f0c4
commit 1cfeebe
Showing
4 changed files
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1cfeebe
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.
Hm, couldn't we adjust the tests instead to work on the CI as well? :(
And haven't the AllocationTests issues been solved in the meantime?
A hacky solution could be something like:
#classes : [ #AllocationTest, #DebuggerTests, + #'comment: generates user interrupt which would abort test execution', #LangEnvBugs, #Win32VMTest ]
Alternatively, we could teach smalltalkCI to read JSON or YAML files later. 🤓
1cfeebe
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.
You would have to also ignore instances of String somewhere else, right? =) Or does this work already? Let's not confuse "hacky solution" with "something only remotely related to an actual solution". ;-)
1cfeebe
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.
See #33. :-)
1cfeebe
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.
Ehm ... it's tricky enough to support Windows/Linux/Mac. Do you want to increase the effort by having a CI-specific version for each platform?
1cfeebe
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.
I wish
.smalltalk.ston
had support for platform switches. Anyway, let's keep it as is and try to decorate all excluded tests in the future with a comment (as proposed in #33), then we can still address them later if we want.