Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Peano Setup #696

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
9 changes: 1 addition & 8 deletions programming_examples/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@
# -*- Python -*-

import os
import platform
import re
import subprocess
import tempfile
import shutil

import lit.formats
import lit.util

from lit.llvm import llvm_config
from lit.llvm.subst import ToolSubst
from lit.llvm.subst import FindTool

# Configuration file for the 'lit' test runner.

Expand Down Expand Up @@ -125,12 +122,8 @@

# test if LM_LICENSE_FILE valid
if config.enable_chess_tests:
import shutil

result = shutil.which("xchesscc")

import subprocess

if result != None:
result = subprocess.run(
["xchesscc", "+v"], stdout=subprocess.PIPE, stderr=subprocess.PIPE
Expand Down
9 changes: 1 addition & 8 deletions test/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@
# -*- Python -*-

import os
import platform
import re
import shutil
import subprocess
import tempfile

import lit.formats
import lit.util

from lit.llvm import llvm_config
from lit.llvm.subst import ToolSubst
from lit.llvm.subst import FindTool

# Configuration file for the 'lit' test runner.

Expand Down Expand Up @@ -156,12 +153,8 @@

# test if LM_LICENSE_FILE valid
if config.enable_chess_tests:
import shutil

result = shutil.which("xchesscc")

import subprocess

if result != None:
result = subprocess.run(
["xchesscc", "+v"], stdout=subprocess.PIPE, stderr=subprocess.PIPE
Expand Down
Loading