You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2010/09/13 20:58:15 UTC

svn commit: r996640 - in /avro/trunk: CHANGES.txt lang/c++/build.sh lang/c/build.sh

Author: cutting
Date: Mon Sep 13 18:58:14 2010
New Revision: 996640

URL: http://svn.apache.org/viewvc?rev=996640&view=rev
Log:
AVRO-655. Change build so that 'dist' target no longer also runs C and C++ tests.

Modified:
    avro/trunk/CHANGES.txt
    avro/trunk/lang/c++/build.sh
    avro/trunk/lang/c/build.sh

Modified: avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=996640&r1=996639&r2=996640&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Mon Sep 13 18:58:14 2010
@@ -8,6 +8,9 @@ Avro 1.4.1 (unreleased)
 
   IMPROVEMENTS
 
+    AVRO-655. Change build so that 'dist' target no longer also runs C
+    and C++ unit tests. (cutting)
+
   BUG FIXES
 
     AVRO-666. Remove an extraneous pdb.set_trace() that crept into schema.py

Modified: avro/trunk/lang/c++/build.sh
URL: http://svn.apache.org/viewvc/avro/trunk/lang/c%2B%2B/build.sh?rev=996640&r1=996639&r2=996640&view=diff
==============================================================================
--- avro/trunk/lang/c++/build.sh (original)
+++ avro/trunk/lang/c++/build.sh Mon Sep 13 18:58:14 2010
@@ -77,7 +77,6 @@ function do_configure {
 }
 
 function do_build {
-    (cd $build_dir && make)
     (cd $build_dir && make check)
 }
 
@@ -100,10 +99,8 @@ function do_tar_file {
 }
 
 function do_dist {
-    (cd $build_dir && make)
-    (cd $build_dir && make check)
-    do_docs
     do_tar_file
+    do_docs
 }
 
 function do_clean {

Modified: avro/trunk/lang/c/build.sh
URL: http://svn.apache.org/viewvc/avro/trunk/lang/c/build.sh?rev=996640&r1=996639&r2=996640&view=diff
==============================================================================
--- avro/trunk/lang/c/build.sh (original)
+++ avro/trunk/lang/c/build.sh Mon Sep 13 18:58:14 2010
@@ -51,7 +51,7 @@ case "$1" in
 
     dist)
 	prepare_build
-	make -C $build_dir distcheck
+	make -C $build_dir dist
 	if [ ! -d $dist_dir ]; then 
            mkdir -p $dist_dir 
         fi