blob: 35c04b5569bf2956d6801e262ab5d0906b6f430e [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2021 Efabless Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import re
import sys
import json
args = sys.argv[1:]
if len(args) < 1:
print(
f"Usage: {__file__} [test set 0 name [test set 1 name [...]]]", file=sys.stderr
)
exit(os.EX_USAGE)
directory = os.path.dirname(os.path.realpath(__file__))
files = [os.path.join(directory, x) for x in args]
designs = []
for file in files:
designs_temp = re.split(r"\s+", open(file).read().strip())
for design in designs_temp:
if design.startswith("#") or design == "":
continue
designs.append(design)
print(json.dumps({"design": designs}))