We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38efed7 commit a744da9Copy full SHA for a744da9
docs/contributor/CONTRIBUTING.md
@@ -199,11 +199,14 @@ print its path as the last output, if successful.
199
If you made changes to the parser, you may have to regenerate the golden files
200
like so:
201
202
- find graalpython -name *.scope -delete
203
- find graalpython -name *.tast -delete
204
- find graalpython -name *.co -delete
+ find graalpython -name '*.scope' -delete
+ find graalpython -name '*.tast' -delete
205
mx punittest com.oracle.graal.python.test.parser
206
+If you made changes to the bytecode compiler, you may have to regenerate its golden files:
207
+
208
+ find graalpython -name '*.co' -delete
209
+ mx punittest com.oracle.graal.python.test.compiler
210
211
### Benchmarking
212
0 commit comments