diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-09-07 16:04:45 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-10-15 07:59:25 +0200 |
commit | 1101b3524d9d6513fe539e5365e099ebed38d5e8 (patch) | |
tree | 886f8312a2fdbbfed5e7c992e40e7984f9b65354 /unoidl/qa | |
parent | 4c5b693267fac35c83e59f3288a1d46b99f02eea (diff) |
Repurpose regcompare test as unoidl-check test
532b47a650ce5189e1fb759201129d7d1f434133 "[ABI CHANGE] In SDK, replace
regcompare with unoidl-check" had left "registry/CustomTarget_regcompare_test.mk
around to verify that unoidl-check behaves the same as did regcompare on those
old-format .urd/.rdb files." Behavior of unoidl-check on those old-format .rdb
files will become less relevant with the planned move from the old-format
idlc/regmerge toolchain to the new-format unoidl-write toolchain also for the
SDK. But there appear to be no unit tests for unoidl-check, so repurpose (and
move around) the existing test (switching it from using idlc/regmerge to using
unoidl-write).
Change-Id: I4c33e9c16aaf0f99e35d9257a40f3bc2ae2725ea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121783
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'unoidl/qa')
-rw-r--r-- | unoidl/qa/unoidl-check/other1.idl | 1 | ||||
-rw-r--r-- | unoidl/qa/unoidl-check/other2.idl | 1 | ||||
-rw-r--r-- | unoidl/qa/unoidl-check/pe.idl | 1 | ||||
-rw-r--r-- | unoidl/qa/unoidl-check/psa.idl | 1 | ||||
-rw-r--r-- | unoidl/qa/unoidl-check/psb.idl | 1 | ||||
-rw-r--r-- | unoidl/qa/unoidl-check/ue.idl | 1 | ||||
-rw-r--r-- | unoidl/qa/unoidl-check/usa.idl | 1 | ||||
-rw-r--r-- | unoidl/qa/unoidl-check/usb.idl | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/unoidl/qa/unoidl-check/other1.idl b/unoidl/qa/unoidl-check/other1.idl new file mode 100644 index 000000000000..75473015bc82 --- /dev/null +++ b/unoidl/qa/unoidl-check/other1.idl @@ -0,0 +1 @@ +module M { enum X { V }; }; diff --git a/unoidl/qa/unoidl-check/other2.idl b/unoidl/qa/unoidl-check/other2.idl new file mode 100644 index 000000000000..f6c94ef66548 --- /dev/null +++ b/unoidl/qa/unoidl-check/other2.idl @@ -0,0 +1 @@ +enum X { V }; diff --git a/unoidl/qa/unoidl-check/pe.idl b/unoidl/qa/unoidl-check/pe.idl new file mode 100644 index 000000000000..c597b29f048d --- /dev/null +++ b/unoidl/qa/unoidl-check/pe.idl @@ -0,0 +1 @@ +module M { published enum N { V }; }; diff --git a/unoidl/qa/unoidl-check/psa.idl b/unoidl/qa/unoidl-check/psa.idl new file mode 100644 index 000000000000..b8079c9add9d --- /dev/null +++ b/unoidl/qa/unoidl-check/psa.idl @@ -0,0 +1 @@ +module M { published struct N { long m; }; }; diff --git a/unoidl/qa/unoidl-check/psb.idl b/unoidl/qa/unoidl-check/psb.idl new file mode 100644 index 000000000000..03d02b302c96 --- /dev/null +++ b/unoidl/qa/unoidl-check/psb.idl @@ -0,0 +1 @@ +module M { published struct N { short m; }; }; diff --git a/unoidl/qa/unoidl-check/ue.idl b/unoidl/qa/unoidl-check/ue.idl new file mode 100644 index 000000000000..0face3356b23 --- /dev/null +++ b/unoidl/qa/unoidl-check/ue.idl @@ -0,0 +1 @@ +module M { enum N { V }; }; diff --git a/unoidl/qa/unoidl-check/usa.idl b/unoidl/qa/unoidl-check/usa.idl new file mode 100644 index 000000000000..80fe2c2f4c2e --- /dev/null +++ b/unoidl/qa/unoidl-check/usa.idl @@ -0,0 +1 @@ +module M { struct N { long m; }; }; diff --git a/unoidl/qa/unoidl-check/usb.idl b/unoidl/qa/unoidl-check/usb.idl new file mode 100644 index 000000000000..08e7e9daa9d4 --- /dev/null +++ b/unoidl/qa/unoidl-check/usb.idl @@ -0,0 +1 @@ +module M { struct N { short m; }; }; |