From cd17aae8f6ead1ffd457105a567c3a06d036c262 Mon Sep 17 00:00:00 2001 From: Ross Bayer Date: Fri, 24 Jan 2020 01:00:05 -0800 Subject: [PATCH] Remove the unused utils/guard-malloc-swift script. --- utils/guard-malloc-swift | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 utils/guard-malloc-swift diff --git a/utils/guard-malloc-swift b/utils/guard-malloc-swift deleted file mode 100755 index 05660e54988ff..0000000000000 --- a/utils/guard-malloc-swift +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# Runs swift (found on the path) with -use-malloc and GuardMalloc enabled. -# Command-line arguments are forwarded to the swift compiler untouched. -# This script can be used to run the test suite with memory debugging enabled -# by setting the SWIFT environment variable to point to the script, as in: -# -# SWIFT=/path/to/guard-malloc-swift llvm-lit -sv test - -export MallocScribble=1 -export MallocPreScribble=1 -export MallocGuardEdges=1 -export MallocCheckHeapStart=100 -export MallocCheckHeapEach=100 -export MallocCheckHeapAbort=1 -export MallocErrorAbort=1 - -export DYLD_INSERT_LIBRARIES=/usr/lib/libgmalloc.dylib - -swift -use-malloc "$@"