- Rennes, France
- https://koka.kiwi
- Joined on
2021-07-29
Tests: Add garage integration tests
c3498076d4
garage(tests): Remove RNG stuff
c8b30ebc79
garage(tests): Remove superfluous test
d7decda3f4
garage(tests): Add random suffix to created buckets.
cd13ea461b
garage(tests): Add some unsafe-usage doc and tweaks
5d19f3d2d7
Add integration tests to Drone
Tests: Add garage integration tests
Tests: Add garage integration tests
71496c9f4e
garage(tests): Remove RNG stuff
2bb0f4613f
garage(tests): Remove superfluous test
081d594b6d
garage(tests): Add random suffix to created buckets.
540c5479a7
garage(tests): Add some unsafe-usage doc and tweaks
6399cd740d
Add integration tests to Drone
db3d23c4e5
garage(tests): Remove RNG stuff
4d431b6446
garage(tests): Remove superfluous test
3f485bff00
garage(tests): Add random suffix to created buckets.
cb42804ce8
garage(tests): Add some unsafe-usage doc and tweaks
62aa365737
Add integration tests to Drone
4865964d4a
garage(tests): Remove RNG stuff
278cf8946a
garage(tests): Remove superfluous test
2e1b48424a
garage(tests): Add random suffix to created buckets.
08eb976c03
garage(tests): Add some unsafe-usage doc and tweaks
f73b74485c
Add integration tests to Drone
ccd5139213
Upgrade cargo2nix
c3f2a03d5d
tests: Fix garage integration test
c6aedebb67
garage(tests): Add random suffix to created buckets.
5000027721
garage(tests): Add some unsafe-usage doc and tweaks
070ec4384d
Add integration tests to Drone
7d5aa47cc4
Upgrade cargo2nix
243a55a4e2
tests: Fix garage integration test
Tests: Add garage integration tests
Simply because i wanted to keep the code convention about test assertions utilities: assert!
, assert_eq!
and assert_ne!
Tests: Add garage integration tests
The unsafe blocks here are required because:
INSTANCE
is a mutable static, accessing/modifying is unsafe by definition: https://doc.rust-lang.org/nomicon/what-unsafe-does.htmlINSTANCE
is…
Tests: Add garage integration tests
common::ext
is meant to contains some "extension" helpers traits, mainly for stuff contained in std::process
structs actually.
Tests: Add garage integration tests
It's required by the static_init::destructor
attribute, as it register the function to be called by libc global ctor/dtor stuff