Remove unused cmake things

This commit is contained in:
crazywhalecc
2025-06-09 01:48:48 +08:00
parent 059d134990
commit f158fba48d
3 changed files with 16 additions and 67 deletions

View File

@@ -8,7 +8,6 @@ use PHPUnit\Framework\TestCase;
use SPC\builder\freebsd\SystemUtil as FreebsdSystemUtil;
use SPC\builder\linux\SystemUtil as LinuxSystemUtil;
use SPC\builder\macos\SystemUtil as MacosSystemUtil;
use SPC\exception\FileSystemException;
/**
* @internal
@@ -31,15 +30,6 @@ class UnixSystemUtilTest extends TestCase
$this->util = new $util_class();
}
/**
* @throws FileSystemException
*/
public function testMakeCmakeToolchainFile()
{
$str = $this->util->makeCmakeToolchainFile(PHP_OS_FAMILY, 'x86_64', '');
$this->assertIsString($str);
}
public function testFindCommand()
{
$this->assertIsString($this->util->findCommand('bash'));