forked from chipsalliance/f4pga-xc7-bram-patch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquickTest.sh
More file actions
23 lines (22 loc) · 1.28 KB
/
quickTest.sh
File metadata and controls
23 lines (22 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# Copyright (C) 2020-2021 The Project U-Ray Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
echo "##########################################################################"
echo "Running: python bitMapping.py testing/tests/master/1kb4 mem/ram 1kb4.mdd --printmappings | head -n 40"
python bitMapping.py testing/tests/master/1kb4 mem/ram 1kb4.mdd --printmappings | head -n 5
echo "##########################################################################"
echo "Running: python fasm2init.py testing/tests/master/1kb4 mem/ram 1kb4.mdd --check"
python fasm2init.py testing/tests/master/1kb4 mem/ram 1kb4.mdd --check
echo "##########################################################################"
echo "Running: python checkTheBits.py testing/tests/master/2kb8 mem/ram"
python checkTheBits.py testing/tests/master/2kb8 mem/ram
echo "##########################################################################"
echo "Running: python genh.py testing/tests/master/1kb4/1kb4.mdd myDesign"
python genh.py testing/tests/master/1kb4/1kb4.mdd myDesign
cat myDesign.c | head -n 25
echo "##########################################################################"