summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-02-18 03:23:59 +0300
committerAndrei Karas <akaras@inbox.ru>2012-02-18 03:23:59 +0300
commitb0906cbb3e852db03eaa3203553e4c2dfcee7e42 (patch)
tree637f6e78ed08e5a043c4399265ffe806ffb7f15e
parentc652b5b89d22a532f80de4a3eff96a336f90d58b (diff)
downloadplus-b0906cbb3e852db03eaa3203553e4c2dfcee7e42.tar.gz
plus-b0906cbb3e852db03eaa3203553e4c2dfcee7e42.tar.bz2
plus-b0906cbb3e852db03eaa3203553e4c2dfcee7e42.tar.xz
plus-b0906cbb3e852db03eaa3203553e4c2dfcee7e42.zip
Remove from git test scripts.
-rw-r--r--.gitignore8
-rwxr-xr-xbuild/bmakesnapshot43
-rwxr-xr-xbuild/clmake16
-rwxr-xr-xbuild/makecheck13
-rwxr-xr-xbuild/makecheck23
-rwxr-xr-xbuild/makecheck34
-rwxr-xr-xbuild/makecheck45
-rwxr-xr-xbuild/makecheck56
8 files changed, 8 insertions, 80 deletions
diff --git a/.gitignore b/.gitignore
index 42a6980d6..2f9c8690e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -100,6 +100,14 @@ build/toolchain.cmake1
build/makerats.log
build/make_hc.txt
build/make_hc2.txt
+build/makecheck1
+build/makecheck2
+build/makecheck3
+build/makecheck4
+build/makecheck5
+build/makecheck6
+build/clmake
+build/bmakesnapshot
# debian
debian/*
diff --git a/build/bmakesnapshot b/build/bmakesnapshot
deleted file mode 100755
index b13b31bfa..000000000
--- a/build/bmakesnapshot
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-cd ..
-
-dir=`pwd`
-
-export PATH=/usr/lib/gcc-snapshot/bin:$PATH
-export CC=gcc
-export CXX=g++
-
-export LANG=C
-
-export CXXFLAGS="-Wvariadic-macros -Wvla -Wredundant-decls \
--Wpacked-bitfield-compat -Wtrampolines \
--Wsuggest-attribute=noreturn -Wunused -Wstrict-aliasing=2 \
--fstrict-aliasing -Wunreachable-code -Wabi -Wdisabled-optimization \
--Wvolatile-register-var -Winvalid-pch -Wredundant-decls \
--Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \
--Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \
--Wctor-dtor-privacy -Wstrict-null-sentinel -Wlogical-op \
--Wcast-align -Wpointer-arith -Wundef \
--Wmissing-include-dirs -Winit-self -pedantic -Wall -ggdb3 -O2 -pipe \
--Wpacked -Wextra -Wstrict-overflow=1 -Wunknown-pragmas -Wwrite-strings \
--Wstack-protector -Wshadow -Wunused-macros -Wsynth \
--Wbuiltin-macro-redefined -Wctor-dtor-privacy -Wdeprecated -Wextra \
--Wendif-labels -Wformat=1 -Wimport -Wnon-virtual-dtor -Wpsabi \
--Wsign-promo -Wwrite-strings -D_FORTIFY_SOURCE=2 -Wc++11-compat -std=c++0x \
--Wdelete-non-virtual-dtor -Wmaybe-uninitialized -Wunused-local-typedefs \
--Wvector-operation-performance -Wfree-nonheap-object -Winvalid-memory-model \
--Wnarrowing -Wzero-as-null-pointer-constant"
-
-autoreconf -i
-./configure --prefix=$dir/run \
---datadir=$dir/run/share/games \
---bindir=$dir/run/bin \
---mandir=$dir/run/share/man
-
-cd po
-#make -j5 update-po 2>../build/make1.log
-make -j5 update-gmo 2>../build/logs/gcc47.txt
-cd ..
-make -j5 2>build/make2.log
-
diff --git a/build/clmake b/build/clmake
deleted file mode 100755
index 3817e6b89..000000000
--- a/build/clmake
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-cd ..
-
-dir=`pwd`
-
-export LANG=C
-export CC=clang
-export CXX=clang++
-
-./configure --prefix=$dir/run \
---datadir=$dir/run/share/games \
---bindir=$dir/run/bin \
---mandir=$dir/run/share/man
-
-make -j5 2>build/logs/clang.txt
diff --git a/build/makecheck1 b/build/makecheck1
deleted file mode 100755
index 58f231e14..000000000
--- a/build/makecheck1
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-
-cppcheck --enable=style --enable=information --enable=unusedFunction --force -j 5 -v .. 1>makecheck.txt 2>logs/cppcheck1.txt
diff --git a/build/makecheck2 b/build/makecheck2
deleted file mode 100755
index 184903c7a..000000000
--- a/build/makecheck2
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-
-../../nsiqcppstyle/nsiqcppstyle/nsiqcppstyle --show-url ../src >logs/nsiqcppstyle.txt
diff --git a/build/makecheck3 b/build/makecheck3
deleted file mode 100755
index c09d002cb..000000000
--- a/build/makecheck3
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
-cd ../src
-../../cppcheck/cppcheck --enable=all -I . -I guichan/include --force -j 5 -v . 1>../build/makecheck.txt 2>../build/logs/cppcheck2.txt
diff --git a/build/makecheck4 b/build/makecheck4
deleted file mode 100755
index 946761892..000000000
--- a/build/makecheck4
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-../../checkheaders/checkheaders --skip debug.h ../src 2>tmp.txt
-sed '/(style): Header not found/d' tmp.txt >logs/checkheader.txt
-rm tmp.txt
diff --git a/build/makecheck5 b/build/makecheck5
deleted file mode 100755
index 9cf5450b6..000000000
--- a/build/makecheck5
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-find ../src -type f -name "*.cpp" -exec ../../vera++/vera++ {} \; 2>logs/vera.txt
-find ../src -type f -name "*.hpp" -exec ../../vera++/vera++ {} \; 2>>logs/vera.txt
-find ../src -type f -name "*.h" -exec ../../vera++/vera++ {} \; 2>>logs/vera.txt
-find ../src -type f -name "*.cc" -exec ../../vera++/vera++ {} \; 2>>logs/vera.txt