mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
Like most test directories, tests/invalid contains several groups of
related tests. The names of these tests followed several different patterns:
x_1, x_2, x_3
x, x_2, x_3
x, x2, x3
This diff changes all these groups to follow the first pattern above
by renaming all the relevant tests in the groups that used to follow
one of the other patterns.
17 lines
342 B
Mathematica
17 lines
342 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Test for circular equivalence modes.
|
|
%
|
|
|
|
:- module circ_mode_1.
|
|
|
|
:- interface.
|
|
|
|
:- mode circ == circ.
|
|
|
|
:- mode circ1 == circ2.
|
|
|
|
:- mode circ2 == circ1.
|