OILS / test / bug-2123.sh View on Github | oilshell.org

14 lines, 5 significant
1#!/usr/bin/env bash
2
3demo() {
4 local ysh=_bin/cxx-opt/ysh
5 ninja $ysh
6
7 #OILS_GC_STATS=1 $ysh test/bug-2123.ysh
8
9 # max RSS
10 # 246
11 /usr/bin/time --format '%e %M' $ysh test/bug-2123.ysh
12}
13
14"$@"