/** @testcase PR853 declare class extends interface */ class C {} aspect A { declare parents: C extends java.io.Serializable; // CE 10 }s'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/travis/changed_app.sh
blob: 59410788bd9c7145507aec7ae0bcf5b934f22794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
#
# SPDX-FileCopyrightText: 2015 ownCloud, Inc.
# SPDX-License-Identifier: AGPL-3.0-only
#
# @author Joas Schilling
# @author Thomas Müller
# @copyright 2015 Thomas Müller thomas.mueller@tmit.eu
#

APP=$1

FOUND=$(git diff ${TRAVIS_COMMIT_RANGE} | grep -- "^+++ b/apps/$APP/")

if [ "x$FOUND" != 'x' ]; then
	echo "1"
else
	echo "0"
fi