conformance: Rename the source files
authorEmmanuele Bassi <ebassi@linux.intel.com>
Mon, 27 Feb 2012 13:02:01 +0000 (13:02 +0000)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Mon, 27 Feb 2012 13:02:01 +0000 (13:02 +0000)
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.

33 files changed:
tests/conform/Makefile.am
tests/conform/actor-anchors.c [moved from tests/conform/test-anchors.c with 100% similarity]
tests/conform/actor-destroy.c [moved from tests/conform/test-actor-destroy.c with 100% similarity]
tests/conform/actor-graph.c [moved from tests/conform/test-actor-graph.c with 100% similarity]
tests/conform/actor-invariants.c [moved from tests/conform/test-actor-invariants.c with 100% similarity]
tests/conform/actor-iter.c [moved from tests/conform/test-actor-iter.c with 100% similarity]
tests/conform/actor-layout.c [moved from tests/conform/test-actor-layout.c with 100% similarity]
tests/conform/actor-offscreen-redirect.c [moved from tests/conform/test-offscreen-redirect.c with 100% similarity]
tests/conform/actor-paint-opacity.c [moved from tests/conform/test-paint-opacity.c with 100% similarity]
tests/conform/actor-pick.c [moved from tests/conform/test-pick.c with 100% similarity]
tests/conform/actor-size.c [moved from tests/conform/test-actor-size.c with 100% similarity]
tests/conform/animator.c [moved from tests/conform/test-animator.c with 100% similarity]
tests/conform/behaviours.c [moved from tests/conform/test-behaviours.c with 100% similarity]
tests/conform/binding-pool.c [moved from tests/conform/test-binding-pool.c with 100% similarity]
tests/conform/cairo-texture.c [moved from tests/conform/test-cairo-texture.c with 100% similarity]
tests/conform/cally-text.c [moved from tests/conform/test-cally-text.c with 100% similarity]
tests/conform/color.c [moved from tests/conform/test-color.c with 100% similarity]
tests/conform/group.c [moved from tests/conform/test-group.c with 100% similarity]
tests/conform/model.c [moved from tests/conform/test-model.c with 100% similarity]
tests/conform/path.c [moved from tests/conform/test-path.c with 100% similarity]
tests/conform/rectangle.c [moved from tests/conform/test-rectangle.c with 100% similarity]
tests/conform/score.c [moved from tests/conform/test-score.c with 100% similarity]
tests/conform/script-parser.c [moved from tests/conform/test-script-parser.c with 100% similarity]
tests/conform/shader-effect.c [moved from tests/conform/test-shader-effect.c with 100% similarity]
tests/conform/state.c [moved from tests/conform/test-state.c with 100% similarity]
tests/conform/text-cache.c [moved from tests/conform/test-text-cache.c with 100% similarity]
tests/conform/text.c [moved from tests/conform/test-text.c with 100% similarity]
tests/conform/texture-fbo.c [moved from tests/conform/test-texture-fbo.c with 100% similarity]
tests/conform/texture.c [moved from tests/conform/test-texture.c with 100% similarity]
tests/conform/timeline-interpolate.c [moved from tests/conform/test-timeline-interpolate.c with 100% similarity]
tests/conform/timeline-rewind.c [moved from tests/conform/test-timeline-rewind.c with 100% similarity]
tests/conform/timeline.c [moved from tests/conform/test-timeline.c with 100% similarity]
tests/conform/units.c [moved from tests/conform/test-units.c with 100% similarity]

index 07e0bb3..419a253 100644 (file)
@@ -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)