[llvm] [llubi] Add UTC helper (PR #180603)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 9 12:47:14 PST 2026
================
@@ -0,0 +1,137 @@
+#!/usr/bin/env python3
+
+"""A test case update script.
+
+This script is a utility to update LLVM 'llubi' based test cases with new
+FileCheck patterns.
+"""
+
+from __future__ import print_function
+
+from sys import stderr
+from traceback import print_exc
+import argparse
+import os # Used to advertise this file's name ("autogenerated_note").
+import subprocess
+import sys
+
+from UpdateTestChecks import common
+
+# llubi is the only llubi-like in the LLVM tree but downstream forks can add
----------------
boomanaiden154 wrote:
My understanding of the conversation today was that this was VeLLVM's interpreter (https://www.cis.upenn.edu/~stevez/vellvm/), which already has its own test set and would not really benefit from having an update tests script like this.
https://github.com/llvm/llvm-project/pull/180603
More information about the llvm-commits
mailing list