Welcome to our AndroidForums, PeteTheKing!
~ ~ ~
Oh, one other thought to the guys with "test" Valet devices: if you want to also see if the /system partition is a "ghost" partition or one that is getting cleaned-up (i.e., the files that are not in the verify.zip list are removed), you could try enabling the su binary's immutable state.
This would prevent any cleanup process from being able to remove the file:
busybox chattr +i /system/xbin/su
(^^^ assuming that the su binary was installed in /system/xbin/su)
Note: I don't have a Valet myself to test this on, so if you do this be aware that there might be something that freaks-out (boot-loops?) because if won't be able to remove the su binary.
Anyway, if the file "goes away" after a reboot, then you'll know that you actually have a ghost /system partition. If it stays...well, then, you might have a permanent root
.
Thanks!
Note: setting the immutable status on the su binary was the wonderfully beautiful and simple method for surviving root from an OTA update.
You should be aware, however, that leaving a file with an immutable status in /system might make future OTAs fails because of the recursive re-securing (set_metadata_recursive) that is done in recent (i.e., 4.4) OTA updates. So, if this method works and your device receives a new OTA update--you need to check the OTA's updater-script file for a set_metadata_recursive or set_perm_recursive operation on the /system partition (and/or remove any immutable files in your /system hierarchy) before attempting to install said OTA.