blob: 53ccb591df86feb8798bbe5003bd7853d990ddbb [file] [log] [blame]
manarabdelaty7ad767e2021-04-15 16:54:22 +02001#!/bin/bash
2# SPDX-FileCopyrightText: 2020 Efabless Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15# SPDX-License-Identifier: Apache-2.0
16
17export UPRJ_ROOT=$(pwd)
manarabdelatye542bdf2021-04-20 11:15:40 +020018export CARAVEL_ROOT=$(pwd)/caravel
manarabdelaty7ad767e2021-04-15 16:54:22 +020019cd ..
20export PDK_ROOT=$(pwd)/pdks
21export IMAGE_NAME=efabless/openlane:$OPENLANE_TAG
22
23cd $UPRJ_ROOT
24
25LOG_FILE=out.log
manarabdelaty151dbb82021-04-20 11:46:52 +020026docker run -v $UPRJ_ROOT:$UPRJ_ROOT -v $PDK_ROOT:$PDK_ROOT -v $CARAVEL_ROOT:$CARAVEL_ROOT -e UPRJ_ROOT=$UPRJ_ROOT -e PDK_ROOT=$PDK_ROOT -e CARAVEL_ROOT=$CARAVEL_ROOT -u $(id -u $USER):$(id -g $USER) $IMAGE_NAME bash -c "cd $UPRJ_ROOT; export USER_ID=$USER_ID; make xor-wrapper | tee $LOG_FILE;"
manarabdelaty7ad767e2021-04-15 16:54:22 +020027
manarabdelaty16848c02021-04-21 15:34:39 +020028cnt=$(grep -oP '(?<=Total XOR differences = )[0-9]+' $LOG_FILE)
29
30echo "Total XOR differences = $cnt"
31
32if [[ $cnt -ne 0 ]]; then
33 exit 2;
34fi
35
manarabdelaty7ad767e2021-04-15 16:54:22 +020036exit 0