From 60e2f8ed5bd90c99218f90393c7c1db1119f5fa7 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 27 Feb 2012 13:02:01 +0000 Subject: [PATCH] conformance: Rename the source files It's the conformance test suite: there's no need to namespace the files, just like there's no need to namespace the units. This commit does not change the Cogl tests: they will be moved to Cogl over time, and it's easier to do if we leave them as they are. --- tests/conform/Makefile.am | 64 +++++++++++----------- tests/conform/{test-anchors.c => actor-anchors.c} | 0 .../{test-actor-destroy.c => actor-destroy.c} | 0 .../conform/{test-actor-graph.c => actor-graph.c} | 0 ...{test-actor-invariants.c => actor-invariants.c} | 0 tests/conform/{test-actor-iter.c => actor-iter.c} | 0 .../{test-actor-layout.c => actor-layout.c} | 0 ...creen-redirect.c => actor-offscreen-redirect.c} | 0 ...{test-paint-opacity.c => actor-paint-opacity.c} | 0 tests/conform/{test-pick.c => actor-pick.c} | 0 tests/conform/{test-actor-size.c => actor-size.c} | 0 tests/conform/{test-animator.c => animator.c} | 0 tests/conform/{test-behaviours.c => behaviours.c} | 0 .../{test-binding-pool.c => binding-pool.c} | 0 .../{test-cairo-texture.c => cairo-texture.c} | 0 tests/conform/{test-cally-text.c => cally-text.c} | 0 tests/conform/{test-color.c => color.c} | 0 tests/conform/{test-group.c => group.c} | 0 tests/conform/{test-model.c => model.c} | 0 tests/conform/{test-path.c => path.c} | 0 tests/conform/{test-rectangle.c => rectangle.c} | 0 tests/conform/{test-score.c => score.c} | 0 .../{test-script-parser.c => script-parser.c} | 0 .../{test-shader-effect.c => shader-effect.c} | 0 tests/conform/{test-state.c => state.c} | 0 tests/conform/{test-text-cache.c => text-cache.c} | 0 tests/conform/{test-text.c => text.c} | 0 .../conform/{test-texture-fbo.c => texture-fbo.c} | 0 tests/conform/{test-texture.c => texture.c} | 0 ...meline-interpolate.c => timeline-interpolate.c} | 0 .../{test-timeline-rewind.c => timeline-rewind.c} | 0 tests/conform/{test-timeline.c => timeline.c} | 0 tests/conform/{test-units.c => units.c} | 0 33 files changed, 32 insertions(+), 32 deletions(-) rename tests/conform/{test-anchors.c => actor-anchors.c} (100%) rename tests/conform/{test-actor-destroy.c => actor-destroy.c} (100%) rename tests/conform/{test-actor-graph.c => actor-graph.c} (100%) rename tests/conform/{test-actor-invariants.c => actor-invariants.c} (100%) rename tests/conform/{test-actor-iter.c => actor-iter.c} (100%) rename tests/conform/{test-actor-layout.c => actor-layout.c} (100%) rename tests/conform/{test-offscreen-redirect.c => actor-offscreen-redirect.c} (100%) rename tests/conform/{test-paint-opacity.c => actor-paint-opacity.c} (100%) rename tests/conform/{test-pick.c => actor-pick.c} (100%) rename tests/conform/{test-actor-size.c => actor-size.c} (100%) rename tests/conform/{test-animator.c => animator.c} (100%) rename tests/conform/{test-behaviours.c => behaviours.c} (100%) rename tests/conform/{test-binding-pool.c => binding-pool.c} (100%) rename tests/conform/{test-cairo-texture.c => cairo-texture.c} (100%) rename tests/conform/{test-cally-text.c => cally-text.c} (100%) rename tests/conform/{test-color.c => color.c} (100%) rename tests/conform/{test-group.c => group.c} (100%) rename tests/conform/{test-model.c => model.c} (100%) rename tests/conform/{test-path.c => path.c} (100%) rename tests/conform/{test-rectangle.c => rectangle.c} (100%) rename tests/conform/{test-score.c => score.c} (100%) rename tests/conform/{test-script-parser.c => script-parser.c} (100%) rename tests/conform/{test-shader-effect.c => shader-effect.c} (100%) rename tests/conform/{test-state.c => state.c} (100%) rename tests/conform/{test-text-cache.c => text-cache.c} (100%) rename tests/conform/{test-text.c => text.c} (100%) rename tests/conform/{test-texture-fbo.c => texture-fbo.c} (100%) rename tests/conform/{test-texture.c => texture.c} (100%) rename tests/conform/{test-timeline-interpolate.c => timeline-interpolate.c} (100%) rename tests/conform/{test-timeline-rewind.c => timeline-rewind.c} (100%) rename tests/conform/{test-timeline.c => timeline.c} (100%) rename tests/conform/{test-units.c => units.c} (100%) diff --git a/tests/conform/Makefile.am b/tests/conform/Makefile.am index 07e0bb3..419a253 100644 --- a/tests/conform/Makefile.am +++ b/tests/conform/Makefile.am @@ -16,13 +16,13 @@ units_sources = # animation tests units_sources += \ - test-animator.c \ - test-behaviours.c \ - test-score.c \ - test-state.c \ - test-timeline.c \ - test-timeline-interpolate.c \ - test-timeline-rewind.c \ + animator.c \ + behaviours.c \ + score.c \ + state.c \ + timeline.c \ + timeline-interpolate.c \ + timeline-rewind.c \ $(NULL) # cogl tests @@ -48,39 +48,39 @@ units_sources += \ # actors tests units_sources += \ - test-actor-graph.c \ - test-actor-destroy.c \ - test-actor-invariants.c \ - test-actor-iter.c \ - test-actor-layout.c \ - test-actor-size.c \ - test-anchors.c \ - test-binding-pool.c \ - test-cairo-texture.c \ - test-group.c \ - test-offscreen-redirect.c \ - test-path.c \ - test-paint-opacity.c \ - test-pick.c \ - test-shader-effect.c \ - test-rectangle.c \ - test-texture-fbo.c \ - test-texture.c \ - test-text-cache.c \ - test-text.c \ + actor-anchors.c \ + actor-graph.c \ + actor-destroy.c \ + actor-invariants.c \ + actor-iter.c \ + actor-layout.c \ + actor-offscreen-redirect.c \ + actor-paint-opacity.c \ + actor-pick.c \ + actor-size.c \ + binding-pool.c \ + cairo-texture.c \ + group.c \ + path.c \ + rectangle.c \ + shader-effect.c \ + texture-fbo.c \ + texture.c \ + text-cache.c \ + text.c \ $(NULL) # objects tests units_sources += \ - test-color.c \ - test-model.c \ - test-script-parser.c \ - test-units.c \ + color.c \ + model.c \ + script-parser.c \ + units.c \ $(NULL) # cally tests units_sources += \ - test-cally-text.c \ + cally-text.c \ $(NULL) test_conformance_SOURCES = $(common_sources) $(units_sources) diff --git a/tests/conform/test-anchors.c b/tests/conform/actor-anchors.c similarity index 100% rename from tests/conform/test-anchors.c rename to tests/conform/actor-anchors.c diff --git a/tests/conform/test-actor-destroy.c b/tests/conform/actor-destroy.c similarity index 100% rename from tests/conform/test-actor-destroy.c rename to tests/conform/actor-destroy.c diff --git a/tests/conform/test-actor-graph.c b/tests/conform/actor-graph.c similarity index 100% rename from tests/conform/test-actor-graph.c rename to tests/conform/actor-graph.c diff --git a/tests/conform/test-actor-invariants.c b/tests/conform/actor-invariants.c similarity index 100% rename from tests/conform/test-actor-invariants.c rename to tests/conform/actor-invariants.c diff --git a/tests/conform/test-actor-iter.c b/tests/conform/actor-iter.c similarity index 100% rename from tests/conform/test-actor-iter.c rename to tests/conform/actor-iter.c diff --git a/tests/conform/test-actor-layout.c b/tests/conform/actor-layout.c similarity index 100% rename from tests/conform/test-actor-layout.c rename to tests/conform/actor-layout.c diff --git a/tests/conform/test-offscreen-redirect.c b/tests/conform/actor-offscreen-redirect.c similarity index 100% rename from tests/conform/test-offscreen-redirect.c rename to tests/conform/actor-offscreen-redirect.c diff --git a/tests/conform/test-paint-opacity.c b/tests/conform/actor-paint-opacity.c similarity index 100% rename from tests/conform/test-paint-opacity.c rename to tests/conform/actor-paint-opacity.c diff --git a/tests/conform/test-pick.c b/tests/conform/actor-pick.c similarity index 100% rename from tests/conform/test-pick.c rename to tests/conform/actor-pick.c diff --git a/tests/conform/test-actor-size.c b/tests/conform/actor-size.c similarity index 100% rename from tests/conform/test-actor-size.c rename to tests/conform/actor-size.c diff --git a/tests/conform/test-animator.c b/tests/conform/animator.c similarity index 100% rename from tests/conform/test-animator.c rename to tests/conform/animator.c diff --git a/tests/conform/test-behaviours.c b/tests/conform/behaviours.c similarity index 100% rename from tests/conform/test-behaviours.c rename to tests/conform/behaviours.c diff --git a/tests/conform/test-binding-pool.c b/tests/conform/binding-pool.c similarity index 100% rename from tests/conform/test-binding-pool.c rename to tests/conform/binding-pool.c diff --git a/tests/conform/test-cairo-texture.c b/tests/conform/cairo-texture.c similarity index 100% rename from tests/conform/test-cairo-texture.c rename to tests/conform/cairo-texture.c diff --git a/tests/conform/test-cally-text.c b/tests/conform/cally-text.c similarity index 100% rename from tests/conform/test-cally-text.c rename to tests/conform/cally-text.c diff --git a/tests/conform/test-color.c b/tests/conform/color.c similarity index 100% rename from tests/conform/test-color.c rename to tests/conform/color.c diff --git a/tests/conform/test-group.c b/tests/conform/group.c similarity index 100% rename from tests/conform/test-group.c rename to tests/conform/group.c diff --git a/tests/conform/test-model.c b/tests/conform/model.c similarity index 100% rename from tests/conform/test-model.c rename to tests/conform/model.c diff --git a/tests/conform/test-path.c b/tests/conform/path.c similarity index 100% rename from tests/conform/test-path.c rename to tests/conform/path.c diff --git a/tests/conform/test-rectangle.c b/tests/conform/rectangle.c similarity index 100% rename from tests/conform/test-rectangle.c rename to tests/conform/rectangle.c diff --git a/tests/conform/test-score.c b/tests/conform/score.c similarity index 100% rename from tests/conform/test-score.c rename to tests/conform/score.c diff --git a/tests/conform/test-script-parser.c b/tests/conform/script-parser.c similarity index 100% rename from tests/conform/test-script-parser.c rename to tests/conform/script-parser.c diff --git a/tests/conform/test-shader-effect.c b/tests/conform/shader-effect.c similarity index 100% rename from tests/conform/test-shader-effect.c rename to tests/conform/shader-effect.c diff --git a/tests/conform/test-state.c b/tests/conform/state.c similarity index 100% rename from tests/conform/test-state.c rename to tests/conform/state.c diff --git a/tests/conform/test-text-cache.c b/tests/conform/text-cache.c similarity index 100% rename from tests/conform/test-text-cache.c rename to tests/conform/text-cache.c diff --git a/tests/conform/test-text.c b/tests/conform/text.c similarity index 100% rename from tests/conform/test-text.c rename to tests/conform/text.c diff --git a/tests/conform/test-texture-fbo.c b/tests/conform/texture-fbo.c similarity index 100% rename from tests/conform/test-texture-fbo.c rename to tests/conform/texture-fbo.c diff --git a/tests/conform/test-texture.c b/tests/conform/texture.c similarity index 100% rename from tests/conform/test-texture.c rename to tests/conform/texture.c diff --git a/tests/conform/test-timeline-interpolate.c b/tests/conform/timeline-interpolate.c similarity index 100% rename from tests/conform/test-timeline-interpolate.c rename to tests/conform/timeline-interpolate.c diff --git a/tests/conform/test-timeline-rewind.c b/tests/conform/timeline-rewind.c similarity index 100% rename from tests/conform/test-timeline-rewind.c rename to tests/conform/timeline-rewind.c diff --git a/tests/conform/test-timeline.c b/tests/conform/timeline.c similarity index 100% rename from tests/conform/test-timeline.c rename to tests/conform/timeline.c diff --git a/tests/conform/test-units.c b/tests/conform/units.c similarity index 100% rename from tests/conform/test-units.c rename to tests/conform/units.c -- 2.7.4