| OLD | NEW |
| 1 # To be used with | 1 # To be used with |
| 2 # sel_universal_ppapi_replay_prolog.stdin | 2 # sel_universal_ppapi_replay_prolog.stdin |
| 3 # define a bunch of variables for readability | 3 # define a bunch of variables for readability |
| 4 | 4 |
| 5 # NOTE: this test exercises the request.SetStreamToFile(true) case |
| 6 # which does not result in a 200 return code |
| 7 # So the expected outcome of this tests is a failure. |
| 8 |
| 5 set_variable MODULE i(4444) | 9 set_variable MODULE i(4444) |
| 6 set_variable INSTANCE i(5555) | 10 set_variable INSTANCE i(5555) |
| 7 | 11 |
| 8 # Tags used by pepper/srpc to marshall js parameters | 12 # Tags used by pepper/srpc to marshall js parameters |
| 9 set_variable JS_STR 4:5 | 13 set_variable JS_STR 4:5 |
| 10 set_variable JS_INT 4:2 | 14 set_variable JS_INT 4:2 |
| 11 | 15 |
| 12 # NOTE: the strings below must not contain unescaped spaces or commas | 16 # NOTE: the strings below must not contain unescaped spaces or commas |
| 13 | 17 |
| 14 set_variable FILE_DATA1 C(6,hello\x20) | 18 set_variable FILE_DATA1 C(6,hello\x20) |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 74 |
| 71 | 75 |
| 72 ###################################################################### | 76 ###################################################################### |
| 73 ## EPILOG | 77 ## EPILOG |
| 74 ###################################################################### | 78 ###################################################################### |
| 75 echo | 79 echo |
| 76 echo "*** DONE" | 80 echo "*** DONE" |
| 77 rpc PPP_ShutdownModule * | 81 rpc PPP_ShutdownModule * |
| 78 | 82 |
| 79 | 83 |
| OLD | NEW |