Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
Blender
SVT-AV1
FFmpeg
dav1d
7-Zip Compression
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
Llama.cpp
OpenVINO
Renaissance
Blender
vkpeak
ProjectPhysX OpenCL-Benchmark
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
SQLite 1.0.0
system/sqlite-1.0.0
- 14 December 2015 -
sqlite test
install.sh
#!/bin/sh if which sqlite3 >/dev/null 2>&1 ; then echo 0 > ~/install-exit-status else echo "ERROR: SQLite is not found on the system!" echo 2 > ~/install-exit-status fi echo "#!/bin/sh sqlite3 ~/benchmark.db \"CREATE TABLE pts1 ('I' SMALLINT NOT NULL, 'DT' TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 'F1' VARCHAR(4) NOT NULL, 'F2' VARCHAR(16) NOT NULL);\" cat \$TEST_EXTENDS/sqlite-insertions.txt | sqlite3 ~/benchmark.db cat \$TEST_EXTENDS/sqlite-insertions.txt | sqlite3 ~/benchmark.db cat \$TEST_EXTENDS/sqlite-insertions.txt | sqlite3 ~/benchmark.db sqlite3 --version | cut -d \" \" -f 1 > ~/pts-test-version 2>/dev/null" > sqlite-benchmark chmod +x sqlite-benchmark
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.2.0m0--> <PhoronixTestSuite> <TestInformation> <Title>SQLite</Title> <Executable>sqlite-benchmark</Executable> </TestInformation> <TestProfile> <Version>1.0.0</Version> <Extends>pts/sqlite</Extends> <RequiresCoreVersionMin>6100</RequiresCoreVersionMin> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>pbzip2</SystemDependencies> </TestProfile> </PhoronixTestSuite>