diff options
Diffstat (limited to 'test/044-proxy')
| -rw-r--r-- | test/044-proxy/run.py (renamed from test/044-proxy/run) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/044-proxy/run b/test/044-proxy/run.py index 4a322f3323..1784fc51ec 100644 --- a/test/044-proxy/run +++ b/test/044-proxy/run.py @@ -14,5 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Use a smaller heap so it's easier to fill up. -exec ${RUN} $@ --runtime-option -Xmx4m + +def run(ctx, args): + # Use a smaller heap so it's easier to fill up. + ctx.default_run(args, runtime_option=["-Xmx4m"]) |