File tree Expand file tree Collapse file tree
python/ql/test/experimental/library-tests/frameworks/stdlib Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- | SystemCommandExecution.py:16:10:16:21 | ControlFlowNode for Str | Fixed false negative:SystemCommandExecution_getCommand="cmd1; cmd2" |
2- | SystemCommandExecution.py:17:11:17:22 | ControlFlowNode for Str | Fixed false negative:SystemCommandExecution_getCommand="cmd1; cmd2" |
3- | SystemCommandExecution.py:27:11:27:22 | ControlFlowNode for Str | Fixed false negative:SystemCommandExecution_getCommand="cmd1; cmd2" |
4- | SystemCommandExecution.py:28:12:28:23 | ControlFlowNode for Str | Fixed false negative:SystemCommandExecution_getCommand="cmd1; cmd2" |
Original file line number Diff line number Diff line change 1313
1414# can't use a string literal with spaces in the tags of an InlineExpectationsTest, so using variables :|
1515
16- os .popen ("cmd1; cmd2" ) # $f-: SystemCommandExecution_getCommand="cmd1; cmd2"
17- os .system ("cmd1; cmd2" ) # $f-: SystemCommandExecution_getCommand="cmd1; cmd2"
16+ os .popen ("cmd1; cmd2" ) # $SystemCommandExecution_getCommand="cmd1; cmd2"
17+ os .system ("cmd1; cmd2" ) # $SystemCommandExecution_getCommand="cmd1; cmd2"
1818
1919
2020def os_members ():
@@ -24,8 +24,8 @@ def os_members():
2424 # :|
2525 from os import popen , system
2626
27- popen ("cmd1; cmd2" ) # $f-: SystemCommandExecution_getCommand="cmd1; cmd2"
28- system ("cmd1; cmd2" ) # $f-: SystemCommandExecution_getCommand="cmd1; cmd2"
27+ popen ("cmd1; cmd2" ) # $SystemCommandExecution_getCommand="cmd1; cmd2"
28+ system ("cmd1; cmd2" ) # $SystemCommandExecution_getCommand="cmd1; cmd2"
2929
3030
3131########################################
You can’t perform that action at this time.
0 commit comments