You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by hi...@apache.org on 2016/06/15 16:42:33 UTC

[52/97] [abbrv] incubator-geode git commit: GEODE-837: delete temporary script

GEODE-837: delete temporary script


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/edc8c702
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/edc8c702
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/edc8c702

Branch: refs/heads/GEODE-1372
Commit: edc8c70230e9b927a1951e42ca4528ce13a98eee
Parents: b914df2
Author: Kirk Lund <kl...@pivotal.io>
Authored: Thu Jun 9 10:14:58 2016 -0700
Committer: Kirk Lund <kl...@pivotal.io>
Committed: Thu Jun 9 10:14:58 2016 -0700

----------------------------------------------------------------------
 convert_one_dunit_to_junit4.pl | 41 -------------------------------------
 1 file changed, 41 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/edc8c702/convert_one_dunit_to_junit4.pl
----------------------------------------------------------------------
diff --git a/convert_one_dunit_to_junit4.pl b/convert_one_dunit_to_junit4.pl
deleted file mode 100755
index c6b6dd9..0000000
--- a/convert_one_dunit_to_junit4.pl
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/perl -w -i -p
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-use strict;
-
-my $filename = $ARGV;
-$filename =~ s/.*\/(.*).java/$1/;
-
-#Change constructor to a no arg constructor
-s/(public.*$filename)\(String name\)/$1()/;
-s/super\(name\)/super()/;
-
-#Add @Test annotation
-s/^[^\/]*public void test/  \@Test\n  public void test/;
-
-#Extend the correct junit 4 class
-s/extends CacheTestCase/extends JUnit4CacheTestCase/;
-s/extends DistributedTestCase/extends JUnit4DistributedTestCase/;
-
-#Add the DistributedTest category
-s/(^public class $filename)/\@Category(DistributedTest.class)\n$1/;
-
-#Change calls to new MyTest("string") to use the no arg constructor
-s/new $filename\(\".*?\"\)/new $filename\(\)/;
-
-#Add imports
-s/^(package com.gemstone.*)/$1\n\nimport org.junit.experimental.categories.Category;\nimport org.junit.Test;\n\nimport static org.junit.Assert.*;\n\nimport com.gemstone.gemfire.test.dunit.cache.internal.JUnit4CacheTestCase;\nimport com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase;\nimport com.gemstone.gemfire.test.junit.categories.DistributedTest;/
-