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

Fix Xvfb error for GUI Testcase in CGA #1675

Merged
merged 4 commits into from
Aug 17, 2024
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ set(VERSION_MINOR 0)
# Add the spdlog directory to the include path
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/third_party/spdlog/include ${CMAKE_CURRENT_SOURCE_DIR}/third_party/exprtk ${CMAKE_CURRENT_SOURCE_DIR}/third_party/scope_guard)

set(VERSION_PATCH 414)
set(VERSION_PATCH 415)


option(
Expand Down
7 changes: 4 additions & 3 deletions tests/TestGui/compiler_flow/raptor_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function end_time(){
function parse_cga(){
cd $main_path
tail -n100 ./results_dir/raptor.log > ./results_dir/raptor_tail.log
timeout 15m python3 ../../../parser.py ./results_dir/results.log ./results_dir/raptor_perf.log
timeout 15m python3 ../../../../../parser.py ./results_dir/results.log ./results_dir/raptor_perf.log
mv CGA_Result.json ./results_dir
}

Expand Down Expand Up @@ -91,7 +91,8 @@ fi

function compile () {


module unload synopsys/1.0

cd $main_path/results_dir
echo $PWD

Expand All @@ -115,4 +116,4 @@ cat raptor_perf.log >> results.log
echo -e "#############################################\n" >> results.log

end_time
parse_cga
parse_cga
Loading