Claire Nord

Results 13 issues of Claire Nord

Depends on #52: Please review this first. Depends on https://github.com/vuvuzela/alpenhorn/pull/11, and https://github.com/vuvuzela/internal/pull/2: these just move mock packages from alpenhorn to internal. With this test running, you can run vuvuzela-client in...

See questions inline. Depends on https://github.com/vuvuzela/internal/pull/1. Will later add tests for latency for #43

Hello, I'd like to use [gomock](https://github.com/golang/mock) to mock the Twilio requests and responses in tests. This requires an interface corresponding to `type Twilio struct` and all its methods `func (twilio...

We often need to email all checked-in hackers, or all hackers who were accepted but have not submitted their confirmation yet, etc. Currently we query the database manually for these...

Type: Enhancement
good first issue
Priority: High
Status: Available

I am trying to model a spinlock with Loom and running into a similar issue to #52 and #115. In particular, if I run my test `loom` with ```bash RUSTFLAGS="--cfg...

I'm trying to test a spinlock that uses [parking_lot](https://github.com/Amanieu/parking_lot/tree/master/lock_api)'s `lock_api` with Loom. To implement `lock_api`'s `RawRwLock` I need to supply a `const` initial value, as specified on [this line](https://github.com/Amanieu/parking_lot/blob/master/lock_api/src/rwlock.rs#L36). This...

Hi there, I'm trying to write a simple BST in swym based on [this Mutex implementation](https://github.com/cmnord/threadsafe-bst/) I wrote. I'm reading through `swym-rbtree` for inspiration now, but it's a lot more...

Closes #32 Ran `RUST_TEST_THREADS=1 cargo +nightly test` and `cargo +nightly bench` and both passed.

It looks like `increment::unlogged` and `increment::logged` read and writes the same value without incrementing it. Am I misreading the code? Is this the intended behavior? https://github.com/mtak-/swym/blob/master/benches/increment.rs#L23