From 5e7d9b5fe3c14f5b705e9a17e3e133bf6004296a Mon Sep 17 00:00:00 2001 From: acqn Date: Sun, 18 Sep 2022 22:29:41 +0800 Subject: [PATCH] Renamed a few testcases. --- test/val/{bug1047.c => bug1047-bitfield-char.c} | 0 test/val/{bug1094.c => bug1094-nested-init.c} | 0 test/val/{bug1095.c => bug1095-bitfield-signed.c} | 0 test/val/{bug1139.c => bug1139-bitfield-in-if.c} | 0 test/val/{bug1178.c => bug1178-struct-copy.c} | 0 test/val/{bug1181.c => bug1181-struct-field-null-cmp.c} | 0 test/val/{bug1267.c => bug1267-bitfield-typedef-signedness.c} | 0 test/val/{bug1332.c => bug1332-bitfield.c} | 0 test/val/{bug1357.c => bug1357-pp.c} | 0 test/val/{bug1451.c => bug1451-struct-ptr-to-local.c} | 0 test/val/{bug1462.c => bug1462-biefield-assign-1.c} | 0 test/val/{bug1462-2.c => bug1462-biefield-assign-2.c} | 0 test/val/{bug1462-3.c => bug1462-biefield-assign-3.c} | 0 test/val/{bug1462-4.c => bug1462-biefield-assign-4.c} | 0 test/val/{anon-struct1.c => struct-anon1.c} | 0 test/val/{anon-struct2.c => struct-anon2.c} | 0 test/val/{return-struct.c => struct-returned.c} | 0 17 files changed, 0 insertions(+), 0 deletions(-) rename test/val/{bug1047.c => bug1047-bitfield-char.c} (100%) rename test/val/{bug1094.c => bug1094-nested-init.c} (100%) rename test/val/{bug1095.c => bug1095-bitfield-signed.c} (100%) rename test/val/{bug1139.c => bug1139-bitfield-in-if.c} (100%) rename test/val/{bug1178.c => bug1178-struct-copy.c} (100%) rename test/val/{bug1181.c => bug1181-struct-field-null-cmp.c} (100%) rename test/val/{bug1267.c => bug1267-bitfield-typedef-signedness.c} (100%) rename test/val/{bug1332.c => bug1332-bitfield.c} (100%) rename test/val/{bug1357.c => bug1357-pp.c} (100%) rename test/val/{bug1451.c => bug1451-struct-ptr-to-local.c} (100%) rename test/val/{bug1462.c => bug1462-biefield-assign-1.c} (100%) rename test/val/{bug1462-2.c => bug1462-biefield-assign-2.c} (100%) rename test/val/{bug1462-3.c => bug1462-biefield-assign-3.c} (100%) rename test/val/{bug1462-4.c => bug1462-biefield-assign-4.c} (100%) rename test/val/{anon-struct1.c => struct-anon1.c} (100%) rename test/val/{anon-struct2.c => struct-anon2.c} (100%) rename test/val/{return-struct.c => struct-returned.c} (100%) diff --git a/test/val/bug1047.c b/test/val/bug1047-bitfield-char.c similarity index 100% rename from test/val/bug1047.c rename to test/val/bug1047-bitfield-char.c diff --git a/test/val/bug1094.c b/test/val/bug1094-nested-init.c similarity index 100% rename from test/val/bug1094.c rename to test/val/bug1094-nested-init.c diff --git a/test/val/bug1095.c b/test/val/bug1095-bitfield-signed.c similarity index 100% rename from test/val/bug1095.c rename to test/val/bug1095-bitfield-signed.c diff --git a/test/val/bug1139.c b/test/val/bug1139-bitfield-in-if.c similarity index 100% rename from test/val/bug1139.c rename to test/val/bug1139-bitfield-in-if.c diff --git a/test/val/bug1178.c b/test/val/bug1178-struct-copy.c similarity index 100% rename from test/val/bug1178.c rename to test/val/bug1178-struct-copy.c diff --git a/test/val/bug1181.c b/test/val/bug1181-struct-field-null-cmp.c similarity index 100% rename from test/val/bug1181.c rename to test/val/bug1181-struct-field-null-cmp.c diff --git a/test/val/bug1267.c b/test/val/bug1267-bitfield-typedef-signedness.c similarity index 100% rename from test/val/bug1267.c rename to test/val/bug1267-bitfield-typedef-signedness.c diff --git a/test/val/bug1332.c b/test/val/bug1332-bitfield.c similarity index 100% rename from test/val/bug1332.c rename to test/val/bug1332-bitfield.c diff --git a/test/val/bug1357.c b/test/val/bug1357-pp.c similarity index 100% rename from test/val/bug1357.c rename to test/val/bug1357-pp.c diff --git a/test/val/bug1451.c b/test/val/bug1451-struct-ptr-to-local.c similarity index 100% rename from test/val/bug1451.c rename to test/val/bug1451-struct-ptr-to-local.c diff --git a/test/val/bug1462.c b/test/val/bug1462-biefield-assign-1.c similarity index 100% rename from test/val/bug1462.c rename to test/val/bug1462-biefield-assign-1.c diff --git a/test/val/bug1462-2.c b/test/val/bug1462-biefield-assign-2.c similarity index 100% rename from test/val/bug1462-2.c rename to test/val/bug1462-biefield-assign-2.c diff --git a/test/val/bug1462-3.c b/test/val/bug1462-biefield-assign-3.c similarity index 100% rename from test/val/bug1462-3.c rename to test/val/bug1462-biefield-assign-3.c diff --git a/test/val/bug1462-4.c b/test/val/bug1462-biefield-assign-4.c similarity index 100% rename from test/val/bug1462-4.c rename to test/val/bug1462-biefield-assign-4.c diff --git a/test/val/anon-struct1.c b/test/val/struct-anon1.c similarity index 100% rename from test/val/anon-struct1.c rename to test/val/struct-anon1.c diff --git a/test/val/anon-struct2.c b/test/val/struct-anon2.c similarity index 100% rename from test/val/anon-struct2.c rename to test/val/struct-anon2.c diff --git a/test/val/return-struct.c b/test/val/struct-returned.c similarity index 100% rename from test/val/return-struct.c rename to test/val/struct-returned.c