summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorXizhi Zhu <xizhi.zhu@nokia.com>2011-06-13 16:19:39 +0300
committerXizhi Zhu <xizhi.zhu@nokia.com>2011-06-13 16:19:39 +0300
commit73eb33ef18c5a3c4bd019afbef676a2f03b9b62a (patch)
treecd1f486148385a6c9e9efb5d34e327e0511eb486 /config.tests
parent26a37a62febb37c81cc359f58899ae683f8eca17 (diff)
Align the build system with Qt5.
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/blkid/blkid.pro7
-rw-r--r--config.tests/blkid/main.cpp47
-rwxr-xr-xconfig.tests/tools/which.test39
3 files changed, 0 insertions, 93 deletions
diff --git a/config.tests/blkid/blkid.pro b/config.tests/blkid/blkid.pro
deleted file mode 100644
index 1f916a4c..00000000
--- a/config.tests/blkid/blkid.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = app
-TARGET =
-DEPENDPATH += .
-INCLUDEPATH += .
-
-# Input
-SOURCES += main.cpp
diff --git a/config.tests/blkid/main.cpp b/config.tests/blkid/main.cpp
deleted file mode 100644
index 7434e907..00000000
--- a/config.tests/blkid/main.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the QtSystemKit module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** No Commercial Usage
-** This file contains pre-release code and may not be distributed.
-** You may use this file in accordance with the terms and conditions
-** contained in the Technology Preview License Agreement accompanying
-** this package.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
-**
-**
-**
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <blkid/blkid.h>
-
-int main(int, char**)
-{
- return 0;
-}
diff --git a/config.tests/tools/which.test b/config.tests/tools/which.test
deleted file mode 100755
index 37c858c2..00000000
--- a/config.tests/tools/which.test
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-
-HOME=/dev/null
-export HOME
-
-unset which
-
-WHICH=`which which 2>/dev/null`
-if echo $WHICH | grep 'shell built-in command' >/dev/null 2>&1; then
- WHICH=which
-elif [ -z "$WHICH" ]; then
- if which which >/dev/null 2>&1; then
- WHICH=which
- else
- for a in /usr/ucb /usr/bin /bin /usr/local/bin; do
- if [ -x $a/which ]; then
- WHICH=$a/which
- break;
- fi
- done
- fi
-fi
-
-if [ -z "$WHICH" ]; then
- IFS=:
- for a in $PATH; do
- if [ -x $a/$1 ]; then
- echo "$a/$1"
- exit 0
- fi
- done
-else
- a=`"$WHICH" "$1" 2>/dev/null`
- if [ ! -z "$a" -a -x "$a" ]; then
- echo "$a"
- exit 0
- fi
-fi
-exit 1