Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smarr/smark
Write Benchmarks like Tests
https://github.com/smarr/smark
benchmarking-framework benchmarks pharo smalltalk squeak
Last synced: about 1 month ago
JSON representation
Write Benchmarks like Tests
- Host: GitHub
- URL: https://github.com/smarr/smark
- Owner: smarr
- License: mit
- Created: 2019-09-02T15:18:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-08T15:21:18.000Z (over 3 years ago)
- Last Synced: 2024-07-30T20:32:07.572Z (5 months ago)
- Topics: benchmarking-framework, benchmarks, pharo, smalltalk, squeak
- Language: Smalltalk
- Size: 889 KB
- Stars: 13
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SMark
Write Benchmarks like Tests.SMark is a benchmarking suite for Smalltalk ([Pharo](https://pharo.org) and [Squeak](https://squeak.org) specifically).
## Installation
### Pharo 7+
```smalltalk
Metacello new
baseline: 'SMark';
repository: 'github://smarr/SMark';
load.
```
### Squeak 5.2+
```smalltalk
Installer ensureRecentMetacello.
Metacello new
baseline: 'SMark';
repository: 'github://smarr/SMark';
load.
```