This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
653ffef
commit c8df68a
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Git Application test | ||
|
||
This test tests a file-system's performance creating and manipulating small files by cloning the Spack repository. | ||
|
||
Slow file-systems time out while doing this. | ||
|
||
The test is simple: | ||
|
||
```console | ||
$ time git clone https://github.com/spack/spack.git | ||
Cloning into 'spack'... | ||
remote: Enumerating objects: 325196, done. | ||
remote: Counting objects: 100% (525/525), done. | ||
remote: Compressing objects: 100% (321/321), done. | ||
remote: Total 325196 (delta 207), reused 376 (delta 120), pack-reused 324671 | ||
Receiving objects: 100% (325196/325196), 134.56 MiB | 3.37 MiB/s, done. | ||
Resolving deltas: 100% (140857/140857), done. | ||
Updating files: 100% (8707/8707), done. | ||
|
||
real 11m42.167s | ||
user 0m27.791s | ||
sys 0m7.893s | ||
``` | ||
|
||
This test is pass/fail. |