@test-raw: fix missing libraries/packages

* Python is required for HTTP tests, sshd for connecting
  with the machine.
This commit is contained in:
Kacper Kasper
2026-01-24 22:49:44 +01:00
parent ccbb6eb32d
commit 8e0aa4e092
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -195,7 +195,10 @@ rule DefineDefaultBuildProfiles
}
AddHaikuImageSystemPackages
openssh
openssl3
!gcc2 @{ python3.10 }@
gcc2 @{ python3.10_x86@secondary_x86 }@
;
}
+1 -1
View File
@@ -5,7 +5,7 @@ local libraries = [ on unittests return $(UNIT_TEST_LIBRARIES) ] ;
local executables = [ on unittests return $(UNIT_TEST_EXECUTABLES) ] ;
local resources = [ on unittests return $(UNIT_TEST_RESOURCES) ] ;
AddFilesToPackage add-ons unittests lib : $(libraries) ;
AddFilesToPackage add-ons unittests lib : $(libraries) libcppunit.so ;
AddFilesToPackage add-ons unittests resources : $(resources) ;
AddFilesToPackage add-ons unittests : $(executables) ;