Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ecc1f761 authored by Charlie Boutier's avatar Charlie Boutier
Browse files

BumbleBluetoothTests: add note about the ghost process

Test: atest BumbleBluetoothTests
Bug: 303700011
Change-Id: I2b69074ea7ebe7e940ecd6a418d1755bfa9e41ec
parent 1d76966f
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -55,6 +55,13 @@ atest BumbleBluetoothTests:<package_name>.<test_file_name>#<test_name>
atest BumbleBluetoothTests:android.bluetooth.DckTest#testDiscoverDkGattService
```

Note: The process might not shut down correctly when interrupted with a SIGINT (Ctrl + C) command.
This can leave behind a ghost process. To locate and terminate it, simply follow these steps:
```shell
ps aux | grep python3 # Identify the ghost process and its process id
kill <pid>
```

## Crafting the test: Step by Step

### 0. Create the test file