[clang] Delete old broken lit wrapper (PR #90067)

via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 25 07:46:58 PDT 2024


https://github.com/ldrumm created https://github.com/llvm/llvm-project/pull/90067

Last updated before the monorepo was created[1], this lit wrapper can no longer work. Since it's been broken for so long, I don't think anyone's going to miss it.

[1] 22d5360ed04e69: Does people use this?

>From 266626832a2228bf3a2746f00c9c04fe82417dc7 Mon Sep 17 00:00:00 2001
From: Luke Drummond <luke.drummond at codeplay.com>
Date: Thu, 25 Apr 2024 15:42:54 +0100
Subject: [PATCH] Delete old broken lit wrapper

Last updated before the monorepo was created[1], this lit wrapper can no
longer work. Since it's been broken for so long, I don't think anyone's
going to miss it.

[1] 22d5360ed04e69: Does people use this?
---
 clang/test/TestRunner.sh | 13 -------------
 1 file changed, 13 deletions(-)
 delete mode 100755 clang/test/TestRunner.sh

diff --git a/clang/test/TestRunner.sh b/clang/test/TestRunner.sh
deleted file mode 100755
index f96d3d552d2ee6..00000000000000
--- a/clang/test/TestRunner.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# TestRunner.sh - Backward compatible utility for testing an individual file.
-
-# Find where this script is.
-Dir=$(dirname $(which $0))
-AbsDir=$(cd $Dir; pwd)
-
-# Find 'lit', assuming standard layout.
-lit=$AbsDir/../../../utils/lit/lit.py
-
-# Dispatch to lit.
-$lit "$@"



More information about the cfe-commits mailing list