commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r8177 - in gnuradio/branches/developers/eb/gcell-wip/g


From: eb
Subject: [Commit-gnuradio] r8177 - in gnuradio/branches/developers/eb/gcell-wip/gcell/src: apps lib/runtime
Date: Wed, 9 Apr 2008 21:42:36 -0600 (MDT)

Author: eb
Date: 2008-04-09 21:42:35 -0600 (Wed, 09 Apr 2008)
New Revision: 8177

Added:
   
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.cc
   
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.h
Removed:
   gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_lib.cc
   gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_lib.h
Modified:
   gnuradio/branches/developers/eb/gcell-wip/gcell/src/apps/test_all.cc
   gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/Makefile.am
Log:
preparing to add more qa code

Modified: gnuradio/branches/developers/eb/gcell-wip/gcell/src/apps/test_all.cc
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/src/apps/test_all.cc        
2008-04-10 03:11:30 UTC (rev 8176)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/src/apps/test_all.cc        
2008-04-10 03:42:35 UTC (rev 8177)
@@ -21,7 +21,7 @@
 
 #include <cppunit/TextTestRunner.h>
 
-#include <qa_lib.h>
+#include <qa_gcell_runtime.h>
 
 
 int 
@@ -30,7 +30,7 @@
   
   CppUnit::TextTestRunner      runner;
 
-  runner.addTest(qa_lib::suite());
+  runner.addTest(qa_gcell_runtime::suite());
   
   bool was_successful = runner.run("", false);
 

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/Makefile.am
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/Makefile.am 
2008-04-10 03:11:30 UTC (rev 8176)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/Makefile.am 
2008-04-10 03:42:35 UTC (rev 8177)
@@ -37,7 +37,7 @@
        gc_proc_def_utils.cc
 
 libruntime_qa_la_SOURCES = \
-       qa_lib.cc \
+       qa_gcell_runtime.cc \
        qa_jd_queue.cc \
        qa_jd_stack.cc \
        qa_job_manager.cc
@@ -53,7 +53,7 @@
        qa_jd_queue.h \
        qa_jd_stack.h \
        qa_job_manager.h \
-       qa_lib.h
+       qa_gcell_runtime.h
 
 
 # This kruft is required to link the QA SPU executable into the PPE shared lib 
w/o warnings

Copied: 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.cc
 (from rev 8175, 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_lib.cc)
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.cc
                         (rev 0)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.cc
 2008-04-10 03:42:35 UTC (rev 8177)
@@ -0,0 +1,43 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2007 Free Software Foundation, Inc.
+ * 
+ * This file is part of GNU Radio
+ * 
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ * 
+ * GNU Radio 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 General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+/*
+ * This class gathers together all the test cases for the lib
+ * directory into a single test suite.  As you create new test cases,
+ * add them here.
+ */
+
+#include <qa_gcell_runtime.h>
+#include <qa_jd_stack.h>
+#include <qa_jd_queue.h>
+#include <qa_job_manager.h>
+
+CppUnit::TestSuite *
+qa_gcell_runtime::suite()
+{
+  CppUnit::TestSuite   *s = new CppUnit::TestSuite("lib");
+
+  s->addTest(qa_jd_stack::suite());
+  s->addTest(qa_jd_queue::suite());
+  s->addTest(qa_job_manager::suite());
+
+  return s;
+}

Copied: 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.h
 (from rev 8175, 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_lib.h)
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.h
                          (rev 0)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_gcell_runtime.h
  2008-04-10 03:42:35 UTC (rev 8177)
@@ -0,0 +1,35 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2007 Free Software Foundation, Inc.
+ * 
+ * This file is part of GNU Radio
+ * 
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ * 
+ * GNU Radio 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 General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#ifndef INCLUDED_QA_GCELL_RUNTIME_H
+#define INCLUDED_QA_GCELL_RUNTIME_H
+
+#include <cppunit/TestSuite.h>
+
+//! collect all the tests for the runtime directory
+
+class qa_gcell_runtime {
+public:
+  //! return suite of tests
+  static CppUnit::TestSuite *suite();
+};
+
+
+#endif /* INCLUDED_QA_GCELL_RUNTIME_H */

Deleted: 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_lib.cc

Deleted: 
gnuradio/branches/developers/eb/gcell-wip/gcell/src/lib/runtime/qa_lib.h





reply via email to

[Prev in Thread] Current Thread [Next in Thread]