From e684907eb236c8e811cd13d83d115196e1a2fcab Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 15 Jul 2004 23:25:11 +0000 Subject: [PATCH] remove this for later gvalue testsuite dir Original commit message from CVS: remove this for later gvalue testsuite dir --- tests/old/testsuite/caps/Makefile.am | 1 - tests/old/testsuite/caps/fraction.c | 100 ----------------------------------- testsuite/caps/Makefile.am | 1 - testsuite/caps/fraction.c | 100 ----------------------------------- 4 files changed, 202 deletions(-) delete mode 100644 tests/old/testsuite/caps/fraction.c delete mode 100644 testsuite/caps/fraction.c diff --git a/tests/old/testsuite/caps/Makefile.am b/tests/old/testsuite/caps/Makefile.am index 0a6e7c0..f9bf989 100644 --- a/tests/old/testsuite/caps/Makefile.am +++ b/tests/old/testsuite/caps/Makefile.am @@ -10,7 +10,6 @@ tests_pass = \ union \ string-conversions \ fixed \ - fraction \ intersect2 \ caps \ value_compare \ diff --git a/tests/old/testsuite/caps/fraction.c b/tests/old/testsuite/caps/fraction.c deleted file mode 100644 index f10623f..0000000 --- a/tests/old/testsuite/caps/fraction.c +++ /dev/null @@ -1,100 +0,0 @@ -/* GStreamer - * - * fraction.c: test for all GstFraction operations - * - * Copyright (C) <2004> Thomas Vander Stichele - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#include -#include - -void -test (void) -{ - GValue value1 = { 0 }; - GValue value2 = { 0 }; - GValue value3 = { 0 }; - - //gboolean ret; - - /* comparing 2/3 with 3/4 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, 2, 3); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 3, 4); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); - g_assert (gst_value_compare (&value2, &value1) == GST_VALUE_GREATER_THAN); - g_assert (gst_value_compare (&value1, &value1) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* comparing -4/5 with 2/-3 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, -4, 5); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 2, -3); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); - g_assert (gst_value_compare (&value2, &value1) == GST_VALUE_GREATER_THAN); - g_assert (gst_value_compare (&value1, &value1) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* comparing 10/100 with 20/2000 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, 10, 100); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 200, 2000); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* comparing -4/5 with 2/-3 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, -4, 5); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 2, -3); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); - g_assert (gst_value_compare (&value2, &value1) == GST_VALUE_GREATER_THAN); - g_assert (gst_value_compare (&value1, &value1) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* multiplying 4/5 with 3/-2 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, 4, 5); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 3, -2); - g_value_init (&value3, GST_TYPE_FRACTION); - g_assert (gst_value_fraction_multiply (&value3, &value1, &value2)); - g_assert (gst_value_get_fraction_nominator (&value3) == -6); - g_assert (gst_value_get_fraction_denominator (&value3) == 5); - g_value_unset (&value1); - g_value_unset (&value2); - g_value_unset (&value3); -} - -int -main (int argc, char *argv[]) -{ - - gst_init (&argc, &argv); - - test (); - - return 0; -} diff --git a/testsuite/caps/Makefile.am b/testsuite/caps/Makefile.am index 0a6e7c0..f9bf989 100644 --- a/testsuite/caps/Makefile.am +++ b/testsuite/caps/Makefile.am @@ -10,7 +10,6 @@ tests_pass = \ union \ string-conversions \ fixed \ - fraction \ intersect2 \ caps \ value_compare \ diff --git a/testsuite/caps/fraction.c b/testsuite/caps/fraction.c deleted file mode 100644 index f10623f..0000000 --- a/testsuite/caps/fraction.c +++ /dev/null @@ -1,100 +0,0 @@ -/* GStreamer - * - * fraction.c: test for all GstFraction operations - * - * Copyright (C) <2004> Thomas Vander Stichele - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#include -#include - -void -test (void) -{ - GValue value1 = { 0 }; - GValue value2 = { 0 }; - GValue value3 = { 0 }; - - //gboolean ret; - - /* comparing 2/3 with 3/4 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, 2, 3); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 3, 4); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); - g_assert (gst_value_compare (&value2, &value1) == GST_VALUE_GREATER_THAN); - g_assert (gst_value_compare (&value1, &value1) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* comparing -4/5 with 2/-3 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, -4, 5); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 2, -3); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); - g_assert (gst_value_compare (&value2, &value1) == GST_VALUE_GREATER_THAN); - g_assert (gst_value_compare (&value1, &value1) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* comparing 10/100 with 20/2000 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, 10, 100); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 200, 2000); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* comparing -4/5 with 2/-3 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, -4, 5); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 2, -3); - g_assert (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); - g_assert (gst_value_compare (&value2, &value1) == GST_VALUE_GREATER_THAN); - g_assert (gst_value_compare (&value1, &value1) == GST_VALUE_EQUAL); - g_value_unset (&value1); - g_value_unset (&value2); - - /* multiplying 4/5 with 3/-2 */ - g_value_init (&value1, GST_TYPE_FRACTION); - gst_value_set_fraction (&value1, 4, 5); - g_value_init (&value2, GST_TYPE_FRACTION); - gst_value_set_fraction (&value2, 3, -2); - g_value_init (&value3, GST_TYPE_FRACTION); - g_assert (gst_value_fraction_multiply (&value3, &value1, &value2)); - g_assert (gst_value_get_fraction_nominator (&value3) == -6); - g_assert (gst_value_get_fraction_denominator (&value3) == 5); - g_value_unset (&value1); - g_value_unset (&value2); - g_value_unset (&value3); -} - -int -main (int argc, char *argv[]) -{ - - gst_init (&argc, &argv); - - test (); - - return 0; -} -- 2.7.4