From a6b697ca13945a174cff9f3e9b1af1cf61c0bea5 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 12 Dec 2017 18:32:19 -0800 Subject: Create corelib/serialization and move existing file formats into it This is in preparation to adding CBOR support. We don't need yet another dir for CBOR and placing it in src/corelib/json is just wrong. Change-Id: I9741f017961b410c910dfffd14ffb9d870340fa6 Reviewed-by: Oswald Buddenhagen Reviewed-by: Lars Knoll --- .../qtextstream/readLineStdinProcess/main.cpp | 47 ++++++++++++++++++++++ .../readLineStdinProcess/readLineStdinProcess.pro | 9 +++++ 2 files changed, 56 insertions(+) create mode 100644 tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/main.cpp create mode 100644 tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/readLineStdinProcess.pro (limited to 'tests/auto/corelib/serialization/qtextstream/readLineStdinProcess') diff --git a/tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/main.cpp b/tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/main.cpp new file mode 100644 index 0000000000..41ea5e56f0 --- /dev/null +++ b/tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/main.cpp @@ -0,0 +1,47 @@ +/**************************************************************************** +** +** Copyright (C) 2016 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:GPL-EXCEPT$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 as published by the Free Software +** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + + +#include +#include +#include + + +int main(int argc, char **argv) +{ + QCoreApplication a(argc, argv); + QTextStream qin(stdin); + QTextStream qerr(stderr); + QString line; + do { + line = qin.readLine(); + if (!line.isNull()) + qerr << line << flush; + } while (!line.isNull()); + return 0; +} diff --git a/tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/readLineStdinProcess.pro b/tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/readLineStdinProcess.pro new file mode 100644 index 0000000000..4a4c091dcb --- /dev/null +++ b/tests/auto/corelib/serialization/qtextstream/readLineStdinProcess/readLineStdinProcess.pro @@ -0,0 +1,9 @@ +SOURCES += main.cpp +QT = core +CONFIG += console +CONFIG -= app_bundle +DESTDIR = ./ + +# This app is testdata for tst_qtextstream +target.path = $$[QT_INSTALL_TESTS]/tst_qtextstream/$$TARGET +INSTALLS += target -- cgit v1.2.3