Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion interpreter/cling/test/Driver/CommandHistory.C
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// RUN: %rm /tmp/__testing_cling_history
// RUN: cat %s | env --unset=CLING_NOHISTORY CLING_HISTSIZE=8 CLING_HISTFILE="/tmp/__testing_cling_history" %cling - 2>&1
// RUN: diff /tmp/__testing_cling_history "%S/Inputs/cling_history"
// REQUIRES: not_system-windows
// UNSUPPORTED: system-windows

#include <iostream>

Expand Down
2 changes: 1 addition & 1 deletion interpreter/cling/test/Driver/CurrentDirRm.C
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// RUN: cd "%T/Remove"
// RUN: %rmdir "%T/Remove"
// RUN: %cling %s -Xclang -verify 2>&1 | FileCheck %s
// REQUIRES: not_system-windows
// UNSUPPORTED: system-windows

extern "C" {
int printf(const char*, ...);
Expand Down
2 changes: 1 addition & 1 deletion interpreter/cling/test/Driver/Gnu.C
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// RUN: cat %s | %cling -D__STRICT_ANSI__ -std=gnu++11 -Xclang -verify 2>&1 | FileCheck %s
// RUN: cat %s | %cling -D__STRICT_ANSI__ -std=gnu++14 -Xclang -verify 2>&1 | FileCheck %s
// RUN: cat %s | %cling -D__STRICT_ANSI__ -std=gnu++1z -Xclang -verify 2>&1 | FileCheck %s
// REQUIRES: not_system-windows
// UNSUPPORTED: system-windows

#ifdef __cplusplus
extern "C" int printf(const char*, ...);
Expand Down
2 changes: 1 addition & 1 deletion interpreter/cling/test/Driver/StartupFile.C
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//------------------------------------------------------------------------------

// RUN: cat %s | env CLING_HOME="%S/Inputs" %cling %s 2>&1 | FileCheck %s
// REQUIRES: not_system-windows
// UNSUPPORTED: system-windows

// CHECK: Startup file ran, magic # was 43210

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// LICENSE.TXT for details.
//------------------------------------------------------------------------------

// REQUIRES: not_system-windows
// UNSUPPORTED: system-windows

// RUN: %rm -fr %t-dir
// RUN: %mkdir %t-dir
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// LICENSE.TXT for details.
//------------------------------------------------------------------------------

// UNSUPPORTED: macos
// UNSUPPORTED: system-darwin
// RUN: mkdir -p %t-dir/rlib
// RUN: mkdir -p %t-dir/lib
// RUN: %clang -shared -DCLING_EXPORT=%dllexport %S/call_lib_A.c -o%t-dir/rlib/libcall_lib_A%shlibext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// LICENSE.TXT for details.
//------------------------------------------------------------------------------

// UNSUPPORTED: windows, linux
// UNSUPPORTED: system-windows, system-linux
// RUN: mkdir -p %t-dir/rlib
// RUN: mkdir -p %t-dir/lib
// RUN: %clang -shared -DCLING_EXPORT=%dllexport %S/call_lib_A.c -o%t-dir/rlib/libcall_lib_A%shlibext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// LICENSE.TXT for details.
//------------------------------------------------------------------------------

// UNSUPPORTED: windows, linux
// UNSUPPORTED: system-windows, system-linux
// RUN: mkdir -p %t-dir/rlib
// RUN: mkdir -p %t-dir/lib
// RUN: %clang -shared -DCLING_EXPORT=%dllexport %S/call_lib_A.c -o%t-dir/rlib/libcall_lib_A%shlibext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// LICENSE.TXT for details.
//------------------------------------------------------------------------------

// UNSUPPORTED: windows
// UNSUPPORTED: system-windows
// RUN: mkdir -p %t-dir/rlib
// RUN: mkdir -p %t-dir/lib
// RUN: %clang -shared -DCLING_EXPORT=%dllexport %S/call_lib_A.c -o%t-dir/rlib/libcall_lib_A%shlibext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// LICENSE.TXT for details.
//------------------------------------------------------------------------------

// UNSUPPORTED: windows
// UNSUPPORTED: system-windows
// RUN: mkdir -p %t-dir/rlib
// RUN: mkdir -p %t-dir/lib
// RUN: %clang -shared -DCLING_EXPORT=%dllexport %S/call_lib_A.c -o%t-dir/rlib/libcall_lib_A%shlibext
Expand Down
2 changes: 1 addition & 1 deletion interpreter/cling/test/DynamicLibraryManager/pie.C
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// LICENSE.TXT for details.
//------------------------------------------------------------------------------

// REQUIRES: not_system-windows
// UNSUPPORTED: system-windows

// RUN: mkdir -p %t-dir/lib
// RUN: %clang -shared -DCLING_EXPORT=%dllexport %S/call_lib_A.c -o%t-dir/lib/libcall_lib_A%shlibext
Expand Down
4 changes: 0 additions & 4 deletions interpreter/cling/test/lit.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,6 @@ config.substitutions.append(('%shlibext', config.shlibext))
if platform.system() not in ['Windows'] or lit_config.getBashPath() != '':
config.available_features.add('shell')

# Filter-out tests not supposed to run on Windows
if platform.system() not in ['Windows']:
config.available_features.add('not_system-windows')

# ROOT adds features that "heal" some of cling's tests; need to detect
# vanilla vs cling-as-part-of-ROOT. The latter has no `lib/UserInterface/textinput/`:
if os.path.isdir(os.path.join(config.cling_src_root, 'lib', 'UserInterface', 'textinput')):
Expand Down